Fix the parameter types of the CRYPTO_EX_dup function type.
[oweals/openssl.git] / test / testutil / stanza.c
index e28362025a621d9a71e3911e104518a16f2042f5..ba62f84517f3792dee40e5d9658c7f0b33bbc892 100644 (file)
@@ -72,7 +72,7 @@ static char *strip_spaces(char *p)
     /* Skip over leading spaces */
     while (*p && isspace((unsigned char)*p))
         p++;
-    if (!*p)
+    if (*p == '\0')
         return NULL;
 
     for (q = p + strlen(p) - 1; q != p && isspace((unsigned char)*q); )