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
760ca7b6
...
760ca7b65d194d26191b951c5f6764790b91730e
authored
2004-04-08 13:07:05 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Make info text clearer.
1 parent
d8cd0598
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
comsat/comsat.c
frm/frm.c
sieve/sieve.c
comsat/comsat.c
View file @
760ca7b
...
...
@@ -349,8 +349,8 @@ comsat_main (int fd)
}
syslog
(
LOG_INFO
,
ngettext
(
"%d byte from %s"
,
"%d bytes from %s"
,
rdlen
),
ngettext
(
"
received
%d byte from %s"
,
"
received
%d bytes from %s"
,
rdlen
),
rdlen
,
inet_ntoa
(
sin_from
.
sin_addr
));
buffer
[
rdlen
]
=
0
;
...
...
frm/frm.c
View file @
760ca7b
...
...
@@ -171,7 +171,7 @@ static struct argp_option options[] = {
{
"to"
,
'l'
,
NULL
,
0
,
N_
(
"Include the To: information"
),
0
},
{
"number"
,
'n'
,
NULL
,
0
,
N_
(
"Display message numbers"
),
0
},
{
"Quiet"
,
'Q'
,
NULL
,
0
,
N_
(
"Very quiet"
),
0
},
{
"query"
,
'q'
,
NULL
,
0
,
N_
(
"Print a message if unread mail"
),
0
},
{
"query"
,
'q'
,
NULL
,
0
,
N_
(
"Print a message if
the mailbox contains some
unread mail"
),
0
},
{
"summary"
,
'S'
,
NULL
,
0
,
N_
(
"Print a summary of messages"
),
0
},
{
"status"
,
's'
,
N_
(
"STATUS"
),
0
,
attr_help
,
0
},
{
"align"
,
't'
,
NULL
,
0
,
N_
(
"Try to align"
),
0
},
...
...
sieve/sieve.c
View file @
760ca7b
...
...
@@ -65,7 +65,7 @@ Debug flags:\n\
static
struct
argp_option
options
[]
=
{
{
"no-actions"
,
'n'
,
0
,
0
,
N_
(
"
No actions executed
, just print what would be done"
),
0
},
N_
(
"
Do not execute any actions
, just print what would be done"
),
0
},
{
"keep-going"
,
'k'
,
0
,
0
,
N_
(
"Keep on going if execution fails on a message"
),
0
},
...
...
Please
register
or
sign in
to post a comment