Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
7d6020bc
...
7d6020bcf8a63eb1430f32bec4002f4a03b692c1
authored
2005-08-11 07:28:36 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mail_help): Use mail_command_help()
1 parent
e884780e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
mail/help.c
mail/help.c
View file @
7d6020b
/* 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
;
}
...
...
Please
register
or
sign in
to post a comment