X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/365c07f5d43efe54f7eba674b20f398092a1f53f..d470270aa476e8100eb78b1958ce5dd557983195:/dsig.c diff --git a/dsig.c b/dsig.c index eb70191..e591538 100644 --- a/dsig.c +++ b/dsig.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: dsig.c,v 1.3 2000/07/15 20:53:23 mdw Exp $ + * $Id: dsig.c,v 1.4 2000/08/04 23:23:44 mdw Exp $ * * Verify signatures on distribuitions of files * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: dsig.c,v $ + * Revision 1.4 2000/08/04 23:23:44 mdw + * Various fixes. + * * Revision 1.3 2000/07/15 20:53:23 mdw * More hash functions. Bug fix in getstring. * @@ -346,7 +349,7 @@ static int getstring(FILE *fp, dstr *d, unsigned raw) again: ch = getc(fp); - while (isspace((unsigned char)ch)) + while (isspace(ch)) ch = getc(fp); if (ch == '#') { do ch = getc(fp); while (ch != '\n' && ch != EOF);