added "," as separator for %verify()
authormarc <devnull@localhost>
Tue, 20 Feb 1996 01:35:04 +0000 (01:35 +0000)
committermarc <devnull@localhost>
Tue, 20 Feb 1996 01:35:04 +0000 (01:35 +0000)
CVS patchset: 341
CVS date: 1996/02/20 01:35:04

build/pack.c

index e17a12e..94b0dce 100644 (file)
@@ -531,7 +531,7 @@ static int parseForVerify(char *buf, int *verify_flags)
        *start++ = ' ';
     }
 
-    p = strtok(ourbuf, " \n\t");
+    p = strtok(ourbuf, ", \n\t");
     not = 0;
     *verify_flags = VERIFY_NONE;
     while (p) {
@@ -561,7 +561,7 @@ static int parseForVerify(char *buf, int *verify_flags)
            error(RPMERR_BADSPEC, "Invalid %%verify token: %s", p);
            return 0;
        }
-       p = strtok(NULL, " \n\t");
+       p = strtok(NULL, ", \n\t");
     }
 
     if (not) {