You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
866 B
23 lines
866 B
Index: kdm/backend/auth.c
|
|
===================================================================
|
|
--- kdm/backend/auth.c.orig
|
|
+++ kdm/backend/auth.c
|
|
@@ -518,6 +518,7 @@ DefineLocal( FILE *file, Xauth *auth, in
|
|
uname( &name );
|
|
writeAddr( FamilyLocal, strlen( name.nodename ), name.nodename,
|
|
file, auth, ok );
|
|
+ setenv("XAUTHLOCALHOSTNAME", name.nodename, 1);
|
|
#endif
|
|
|
|
#if !defined(NEED_UTSNAME) || defined(__hpux)
|
|
@@ -1211,6 +1212,9 @@ SetUserAuthorization( struct display *d
|
|
userEnviron = setEnv( userEnviron, "XAUTHORITY", envname );
|
|
systemEnviron = setEnv( systemEnviron, "XAUTHORITY", envname );
|
|
}
|
|
+ name = getenv("XAUTHLOCALHOSTNAME");
|
|
+ if (name)
|
|
+ userEnviron = setEnv( userEnviron, "XAUTHLOCALHOSTNAME", name);
|
|
/* a chown() used to be here, but this code runs as user anyway */
|
|
}
|
|
Debug( "done SetUserAuthorization\n" );
|