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
aeba5889
...
aeba5889106fe4cebc0cd55ca2d0632833841f2f
authored
2005-11-25 13:32:25 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fix diagnostic messages
1 parent
f35564d7
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
mail/cd.c
mh/folder.c
mail/cd.c
View file @
aeba588
...
...
@@ -37,7 +37,7 @@ mail_cd (int argc, char **argv)
if
(
chdir
(
dir
))
{
mu_error
(
_
(
"cannot change to
'
%s': %s"
),
dir
,
mu_strerror
(
errno
));
mu_error
(
_
(
"cannot change to
`
%s': %s"
),
dir
,
mu_strerror
(
errno
));
return
1
;
}
return
0
;
...
...
mh/folder.c
View file @
aeba588
...
...
@@ -48,7 +48,7 @@ static struct argp_option options[] = {
{
"list"
,
ARG_LIST
,
NULL
,
0
,
N_
(
"List the contents of the folder stack"
),
1
},
{
"pack"
,
ARG_PACK
,
N_
(
"NUMBER"
),
OPTION_ARG_OPTIONAL
,
N_
(
"Remove holes in message numbering. Begin numbering from NUMBER (default: first message number"
),
1
},
N_
(
"Remove holes in message numbering. Begin numbering from NUMBER (default: first message number
)
"
),
1
},
{
"push"
,
ARG_PUSH
,
N_
(
"FOLDER"
),
OPTION_ARG_OPTIONAL
,
N_
(
"Push the folder on the folder stack. If FOLDER is specified, it is pushed. "
"Otherwise, if a folder is given in the command line (via + or --folder), "
...
...
Please
register
or
sign in
to post a comment