24 lines
678 B
Diff
24 lines
678 B
Diff
|
diff -up shadow-4.1.4.2/lib/gshadow.c.gshadow shadow-4.1.4.2/lib/gshadow.c
|
||
|
--- shadow-4.1.4.2/lib/gshadow.c.gshadow 2009-06-12 19:50:23.000000000 +0200
|
||
|
+++ shadow-4.1.4.2/lib/gshadow.c 2011-01-05 16:28:55.207685148 +0100
|
||
|
@@ -223,6 +223,7 @@ void endsgent (void)
|
||
|
if (NULL == buf) {
|
||
|
return NULL;
|
||
|
}
|
||
|
+ buflen = BUFSIZ;
|
||
|
}
|
||
|
|
||
|
if (NULL == fp) {
|
||
|
@@ -230,9 +231,9 @@ void endsgent (void)
|
||
|
}
|
||
|
|
||
|
#ifdef USE_NIS
|
||
|
- while (fgetsx (buf, (int) sizeof buf, fp) == buf)
|
||
|
+ while (fgetsx (buf, (int) buflen, fp) == buf)
|
||
|
#else
|
||
|
- if (fgetsx (buf, (int) sizeof buf, fp) == buf)
|
||
|
+ if (fgetsx (buf, (int) buflen, fp) == buf)
|
||
|
#endif
|
||
|
{
|
||
|
while ( ((cp = strrchr (buf, '\n')) == NULL)
|