summaryrefslogtreecommitdiffstats
path: root/eurephiadm
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2010-07-05 23:28:15 +0200
committerDavid Sommerseth <dazo@users.sourceforge.net>2010-07-30 11:02:55 +0200
commit4f5c34ad7c7f90db05498fb8f8c706b82a9cdd66 (patch)
treeb509117f343c625aa5f35a1875f86542d86e9972 /eurephiadm
parent41be71aa03cda1707d3e54a729f00ae9ec4dc8f2 (diff)
downloadeurephia-4f5c34ad7c7f90db05498fb8f8c706b82a9cdd66.tar.gz
eurephia-4f5c34ad7c7f90db05498fb8f8c706b82a9cdd66.tar.xz
eurephia-4f5c34ad7c7f90db05498fb8f8c706b82a9cdd66.zip
eurephiadm, blacklist: Minor updates to the help screen
Diffstat (limited to 'eurephiadm')
-rw-r--r--eurephiadm/commands/blacklist.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/eurephiadm/commands/blacklist.c b/eurephiadm/commands/blacklist.c
index 69fed04..8d0c95d 100644
--- a/eurephiadm/commands/blacklist.c
+++ b/eurephiadm/commands/blacklist.c
@@ -61,7 +61,7 @@ void display_blacklist_help(int page)
{
switch( page ) {
case 'l':
- printf("The blacklist list mode will show all what are blacklisted.\n"
+ printf("The blacklist list mode will show registered entries in the blacklist.\n"
"\n"
" -v | --verbose Show more details\n"
"\n"
@@ -72,7 +72,7 @@ void display_blacklist_help(int page)
break;
case 'D':
- printf("The blacklist delete mode will remove blacklisted items.\n"
+ printf("The blacklist delete mode will remove a blacklisted entry.\n"
"\n"
"One of the following parameters must be given (only one):\n"
" -u | --username <username> User name\n"
@@ -84,7 +84,7 @@ void display_blacklist_help(int page)
break;
case 'A':
- printf("The blacklist mode will register an item to be blacklisted.\n"
+ printf("The blacklist add mode will register a new entry to be blacklisted.\n"
"\n"
"One of the following parameters must be given (only one):\n"
" -u | --username <username> User name\n"
@@ -96,9 +96,9 @@ void display_blacklist_help(int page)
default:
printf("Available modes for the blacklist command are:\n\n"
- " -l | --list List all blacklisted items\n"
- " -A | --add Add an item to the blacklist\n"
- " -D | --delete Delete an item from the blacklist\n"
+ " -l | --list List all entries on theblacklist\n"
+ " -A | --add Add an entry to the blacklist\n"
+ " -D | --delete Delete an entry from the blacklist\n"
" -h | --help <mode> Show help\n\n");
break;
}