summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2005-08-11 07:28:36 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2005-08-11 07:28:36 +0000
commit7d6020bcf8a63eb1430f32bec4002f4a03b692c1 (patch)
tree4cecc57a14bcdf2f0856ba647d302b07a3b80285
parente884780e51943a7a6ecb7f6db7003103d82e4842 (diff)
downloadmailutils-7d6020bcf8a63eb1430f32bec4002f4a03b692c1.tar.gz
mailutils-7d6020bcf8a63eb1430f32bec4002f4a03b692c1.tar.bz2
(mail_help): Use mail_command_help()
-rw-r--r--mail/help.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/help.c b/mail/help.c
index 12d78a6d9..ed01ee928 100644
--- a/mail/help.c
+++ b/mail/help.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2001 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001, 2005 Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -27,13 +27,13 @@ int
mail_help (int argc, char **argv)
{
if (argc < 2)
- return util_help (mail_command_table, NULL);
+ return mail_command_help (NULL);
else
{
int status = 0;
while (--argc)
- status |= util_help (mail_command_table, *++argv);
+ status |= mail_command_help (*++argv);
return status;
}

Return to:

Send suggestions and report system problems to the System administrator.