Displaying 1 result from an estimated 1 matches for "x_bsd_auth".
Did you mean:
bsd_auth
2006 Sep 18
1
BSD Auth: set child environment variables requested by login script [PATCH]
...asswd/login.c,v
retrieving revision 1.8
diff -u -r1.8 login.c
--- libexec/login_passwd/login.c 14 Apr 2005 18:33:42 -0000 1.8
+++ libexec/login_passwd/login.c 18 Sep 2006 10:32:00 -0000
@@ -107,6 +107,9 @@
exit(1);
}
+ fprintf(back, BI_SETENV " X_BSD_AUTH_SOME_RESOURCE %d\n", 1024);
+ fprintf(back, BI_SETENV " TESTVAR %s\n", "bar");
+
/*
* Read password, either as from the terminal or if the
* response mode is active from the caller program.
######################################...