main: use cleaner error output

This commit is contained in:
Mirek Kratochvil 2013-04-20 23:44:18 +02:00
parent bb9640f6b7
commit b3a5fee318

View file

@ -270,7 +270,7 @@ int main (int argc, char**argv)
if (optind != argc) { if (optind != argc) {
for (int i = 0; i < argc; ++i) out (argv[i]); for (int i = 0; i < argc; ++i) out (argv[i]);
err (argv[0] << ": unmatched non-option parameters"); progerr ("unmatched non-option parameters");
do_help = true; do_help = true;
} }
@ -294,7 +294,7 @@ int main (int argc, char**argv)
//keyring initialization //keyring initialization
if (!KR.open() ) { if (!KR.open() ) {
err ("could not open keyring!"); progerr ("could not open keyring!");
return 1; return 1;
} }
@ -420,7 +420,7 @@ int main (int argc, char**argv)
exit: exit:
if (!KR.close() ) { if (!KR.close() ) {
err ("could not close keyring, " progerr ("could not close keyring, "
"something weird is going to happen."); "something weird is going to happen.");
} }