[jbossnative-commits] JBoss Native SVN: r987 - trunk/sight/native/share.

jbossnative-commits at lists.jboss.org jbossnative-commits at lists.jboss.org
Fri Sep 7 04:04:15 EDT 2007


Author: mladen.turk at jboss.com
Date: 2007-09-07 04:04:14 -0400 (Fri, 07 Sep 2007)
New Revision: 987

Modified:
   trunk/sight/native/share/jnu.c
Log:
Fix typo

Modified: trunk/sight/native/share/jnu.c
===================================================================
--- trunk/sight/native/share/jnu.c	2007-09-07 08:03:05 UTC (rev 986)
+++ trunk/sight/native/share/jnu.c	2007-09-07 08:04:14 UTC (rev 987)
@@ -907,10 +907,10 @@
     tp = tmp;
     for (i = 0; i < 62; i++) {
         unsigned char ch;
-        if (!*next || !apr_isxdigit(*next)
+        if (!*next || !apr_isxdigit(*next))
             break;
         ch = (uch4hex(*next++) << 4);
-        if (!*next || !apr_isxdigit(*next)
+        if (!*next || !apr_isxdigit(*next))
             break;
         ch |= uch4hex(*next++);
         *tp++ = ch;




More information about the jbossnative-commits mailing list