diff cmd.c @ 4:b5c4267a7182

Fix check for successful deletion of a empty group A return value of NULL means that there is no empty group of that name. Improve the error message.
author Guido Berhoerster <guido+pwm@berhoerster.name>
date Sun, 05 Feb 2017 13:30:31 +0100
parents a7e41e1a79c8
children 17fb30016e64
line wrap: on
line diff
--- a/cmd.c	Sat Feb 04 22:06:15 2017 +0100
+++ b/cmd.c	Sun Feb 05 13:30:31 2017 +0100
@@ -440,7 +440,7 @@
 	}
 
 	if (pwfile_remove_group(ctx, argv[1]) != 0) {
-		fprintf(stderr, "group \"%s\" does not exist\n", argv[1]);
+		fprintf(stderr, "there is no empty group \"%s\"\n", argv[1]);
 		return (CMD_ERR);
 	}