[uClibc-cvs] uClibc/libc/pwd_grp __getgrent.c,1.8,1.9

Manuel Novoa III mjn3 at uclibc.org
Sat Sep 6 03:29:36 UTC 2003


Update of /var/cvs/uClibc/libc/pwd_grp
In directory winder:/tmp/cvs-serv22680/libc/pwd_grp

Modified Files:
	__getgrent.c 
Log Message:
Small fix for when threading (I think) was disabled.


Index: __getgrent.c
===================================================================
RCS file: /var/cvs/uClibc/libc/pwd_grp/__getgrent.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- __getgrent.c	10 Sep 2002 05:53:30 -0000	1.8
+++ __getgrent.c	6 Sep 2003 03:29:33 -0000	1.9
@@ -97,7 +97,7 @@
 	goto restart;
     *ptr++ = '\0';
 
-    group.gr_gid = (gid_t) strtoul(field_begin, &endptr, 10);
+    group.gr_gid = (__gid_t) strtoul(field_begin, &endptr, 10);
     if (*endptr != '\0')
 	goto restart;
 




More information about the uClibc-cvs mailing list