From 623eea376a7bff6d50c88407c10f279e6f838de4 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Sun, 17 Sep 2000 18:08:38 +0000 Subject: [PATCH] siglen is unsigned, so comparing it to less than 0 is silly, and generates a compiler warning with Compaq C. --- apps/dgst.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dgst.c b/apps/dgst.c index a151fb8457..5d5ab94aea 100644 --- a/apps/dgst.c +++ b/apps/dgst.c @@ -280,7 +280,7 @@ int MAIN(int argc, char **argv) } siglen = BIO_read(sigbio, sigbuf, siglen); BIO_free(sigbio); - if(siglen <= 0) { + if(siglen == 0) { BIO_printf(bio_err, "Error reading signature file %s\n", sigfile); ERR_print_errors(bio_err);