From e3c4a363ea7b03a909f9b92c6657ea9129ee53f3 Mon Sep 17 00:00:00 2001 From: José Bollo Date: Thu, 3 Dec 2015 12:18:13 +0100 Subject: Adding verbosity Change-Id: Icc0fdc6a230e2bf11fccc4f7739009e7266f6b9d --- wgtpkg-sign.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'wgtpkg-sign.c') diff --git a/wgtpkg-sign.c b/wgtpkg-sign.c index 6a6a72a..cd506fc 100644 --- a/wgtpkg-sign.c +++ b/wgtpkg-sign.c @@ -63,6 +63,8 @@ static void usage() " -d number the number of the distributor signature (zero for automatic)\n" " -a the author signature\n" " -f force overwriting\n" + " -q quiet\n" + " -v verbose\n" "\n", appname ); @@ -75,6 +77,8 @@ static struct option options[] = { { "author", no_argument, NULL, 'a' }, { "force", no_argument, NULL, 'f' }, { "help", no_argument, NULL, 'h' }, + { "quiet", no_argument, NULL, 'q' }, + { "verbose", no_argument, NULL, 'v' }, { NULL, 0, NULL, 0 } }; @@ -187,7 +191,7 @@ int main(int ac, char **av) return 1; } -printf("\n\nSIGNING content of directory %s for number %u\n", directory, number); + notice("-- SIGNING content of directory %s for number %u", directory, number); certfiles[ncert] = NULL; return !!create_digsig(number, keyfile, (const char**)certfiles); -- cgit 1.2.3-korg