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
0b953970
...
0b9539705086d1004e4484019858e78bf5a9ce9e
authored
2003-02-03 15:33:56 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(pop3d_abquit): Added missing argument to syslog
1 parent
cd4da46d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
pop3d/extra.c
pop3d/extra.c
View file @
0b95397
...
...
@@ -124,7 +124,7 @@ pop3d_abquit (int reason)
default:
pop3d_outf
(
"-ERR Quitting (reason unknown)
\r\n
"
);
syslog
(
LOG_ERR
,
_
(
"Quitting (numeric reason %d)"
));
syslog
(
LOG_ERR
,
_
(
"Quitting (numeric reason %d)"
)
,
reason
);
break
;
}
...
...
@@ -163,7 +163,7 @@ pop3d_init_tls_server ()
if
(
stream_open
(
stream
))
{
c
onst
c
har
*
p
;
char
*
p
;
stream_strerror
(
stream
,
&
p
);
syslog
(
LOG_ERR
,
_
(
"cannot open TLS stream: %s"
),
p
);
return
0
;
...
...
@@ -224,7 +224,7 @@ pop3d_outf (const char *fmt, ...)
free
(
buf
);
if
(
rc
)
{
c
onst
c
har
*
p
;
char
*
p
;
if
(
stream_strerror
(
ostream
,
&
p
))
p
=
strerror
(
errno
);
...
...
@@ -247,7 +247,7 @@ pop3d_readline (char *buffer, size_t size)
if
(
rc
)
{
c
onst
c
har
*
p
;
char
*
p
;
if
(
stream_strerror
(
ostream
,
&
p
))
p
=
strerror
(
errno
);
...
...
Please
register
or
sign in
to post a comment