Loading...
--- Libc/Libc-391.5.21/gen/FreeBSD/getlogin.c.patch
+++ Libc/Libc-763.13/gen/FreeBSD/getlogin.c.patch
@@ -1,6 +1,24 @@
---- /Volumes/XDisk/tmp/Libc/gen/FreeBSD/getlogin.c.orig 2003-10-29 02:45:01.000000000 -0800
-+++ /Volumes/XDisk/tmp/Libc/gen/FreeBSD/getlogin.c 2004-10-24 17:08:28.000000000 -0700
-@@ -87,7 +87,7 @@
+--- getlogin.c.bsdnew 2009-12-08 00:37:57.000000000 -0800
++++ getlogin.c 2009-12-08 00:44:06.000000000 -0800
+@@ -48,7 +48,7 @@ __FBSDID("$FreeBSD: src/lib/libc/gen/get
+ #define THREAD_LOCK() if (__isthreaded) _pthread_mutex_lock(&logname_mutex)
+ #define THREAD_UNLOCK() if (__isthreaded) _pthread_mutex_unlock(&logname_mutex)
+
+-extern int _getlogin(char *, int);
++extern int __getlogin(char *, int);
+
+ int _logname_valid; /* known to setlogin() */
+ static pthread_mutex_t logname_mutex = PTHREAD_MUTEX_INITIALIZER;
+@@ -59,7 +59,7 @@ getlogin_basic(int *status)
+ static char logname[MAXLOGNAME];
+
+ if (_logname_valid == 0) {
+- if (_getlogin(logname, sizeof(logname)) < 0) {
++ if (__getlogin(logname, sizeof(logname)) < 0) {
+ *status = errno;
+ return (NULL);
+ }
+@@ -82,7 +82,7 @@ getlogin(void)
}
int