Author: aurel32
Date: 2009-01-19 06:32:40 +0000 (Mon, 19 Jan 2009)
New Revision: 3241

Modified:
   glibc-package/branches/glibc-2.9/debian/patches/any/local-nss-overflow.diff
Log:
fix typo



Modified: 
glibc-package/branches/glibc-2.9/debian/patches/any/local-nss-overflow.diff
===================================================================
--- glibc-package/branches/glibc-2.9/debian/patches/any/local-nss-overflow.diff 
2009-01-18 22:25:53 UTC (rev 3240)
+++ glibc-package/branches/glibc-2.9/debian/patches/any/local-nss-overflow.diff 
2009-01-19 06:32:40 UTC (rev 3241)
@@ -35,7 +35,7 @@
 -    variable = convert (strtou32 (line, &endp, base));                        
      \
 +    /* Prevent from 32-bit overflow.  */                                    \
 +    tmp = __strtoull_internal (line, &endp, base, 0);               \
-+    if (tmp > UINT_MAX))                                                    \
++    if (tmp > UINT_MAX)                                                     \
 +      return 0;                                                               
      \
 +    variable = convert ((unsigned long int)tmp);                            \
      if (endp == line)                                                       \


-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

Reply via email to