summaryrefslogtreecommitdiff
path: root/security/openssh/patches/patch-auth2.c
blob: 5bba2885ef5066e5dbbf44de511323f6081c49fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$NetBSD: patch-auth2.c,v 1.3.12.1 2015/07/14 22:03:39 tron Exp $

Replace uid 0 with ROOTUID macro

--- auth2.c.orig	2015-07-01 02:35:31.000000000 +0000
+++ auth2.c
@@ -302,7 +330,7 @@ userauth_finish(Authctxt *authctxt, int 
 		fatal("INTERNAL ERROR: authenticated and postponed");
 
 	/* Special handling for root */
-	if (authenticated && authctxt->pw->pw_uid == 0 &&
+	if (authenticated && authctxt->pw->pw_uid == ROOTUID &&
 	    !auth_root_allowed(method)) {
 		authenticated = 0;
 #ifdef SSH_AUDIT_EVENTS