]> granicus.if.org Git - p11-kit/commitdiff
p11-kit: Remove duplicate WHITESPACE define
authorStef Walter <stefw@redhat.com>
Fri, 20 Feb 2015 20:17:07 +0000 (21:17 +0100)
committerStef Walter <stefw@redhat.com>
Fri, 20 Feb 2015 20:17:23 +0000 (21:17 +0100)
p11-kit/uri.c

index 970f12536bad88790879df2ddf100f9096fa7efd..2aa4e837dc42992d2e2c2c8778f836c11d067d99 100644 (file)
@@ -146,8 +146,6 @@ struct p11_kit_uri {
        char *pin_source;
 };
 
-const static char WHITESPACE[] = " \n\r\v";
-
 static char *
 key_decode (const char *value, const char *end)
 {
@@ -162,9 +160,9 @@ key_decode (const char *value, const char *end)
        key[length] = '\0';
 
        /* Do we have any whitespace? Strip it out. */
-       if (strcspn (key, WHITESPACE) != length) {
+       if (strcspn (key, P11_URL_WHITESPACE) != length) {
                for (at = key, pos = key; pos != key + length + 1; ++pos) {
-                       if (!strchr (WHITESPACE, *pos))
+                       if (!strchr (P11_URL_WHITESPACE, *pos))
                                *(at++) = *pos;
                }
                *at = '\0';
@@ -997,7 +995,7 @@ atoin (const char *start, const char *end)
 {
        int ret = 0;
        while (start != end) {
-               if (strchr (WHITESPACE, *start)) {
+               if (strchr (P11_URL_WHITESPACE, *start)) {
                        start++;
                        continue;
                }