From 0e47fd42b895a5e8b60e9b945b964d4bc0903dea Mon Sep 17 00:00:00 2001 From: marc Date: Tue, 20 Feb 1996 01:35:04 +0000 Subject: [PATCH] added "," as separator for %verify() CVS patchset: 341 CVS date: 1996/02/20 01:35:04 --- build/pack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/pack.c b/build/pack.c index e17a12e..94b0dce 100644 --- a/build/pack.c +++ b/build/pack.c @@ -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) { -- 2.7.4