sbase

suckless unix tools
git clone git://git.2f30.org/sbase
Log | Files | Refs | README | LICENSE

commit 897efd5f13ebecf8d29a9c51df1ec87e6e9d2863
parent a6ef67cd3d66504b2ae563d080140a425b702ab1
Author: sin <sin@2f30.org>
Date:   Sun, 23 Mar 2014 18:58:43 +0000

Remove "WARNING: " prefix from messages

Diffstat:
Mutil/crypt.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/util/crypt.c b/util/crypt.c @@ -79,15 +79,15 @@ cryptcheck(char *sumfile, int argc, char *argv[], fclose(cfp); free(line); if(formatsucks > 0) { - weprintf("WARNING: %d lines are improperly formatted\n", formatsucks); + weprintf("%d lines are improperly formatted\n", formatsucks); ret = EXIT_FAILURE; } if(noread > 0) { - weprintf("WARNING: %d listed file could not be read\n", noread); + weprintf("%d listed file could not be read\n", noread); ret = EXIT_FAILURE; } if(nonmatch > 0) { - weprintf("WARNING: %d computed checksums did NOT match\n", nonmatch); + weprintf("%d computed checksums did NOT match\n", nonmatch); ret = EXIT_FAILURE; } return ret;