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
94e1a6a7
...
94e1a6a7ebc857d4c0dcdc629178e324a06f36fc
authored
2003-02-03 11:26:38 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(imap4d_bye0): Added missing argument to syslog.
1 parent
ea8b0398
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
imap4d/bye.c
imap4d/bye.c
View file @
94e1a6a
...
...
@@ -72,7 +72,7 @@ imap4d_bye0 (int reason, struct imap4d_command *command)
default:
util_out
(
RESP_BYE
,
"Quitting (reason unknown)"
);
syslog
(
LOG_ERR
,
_
(
"Quitting (numeric reason %d)"
));
syslog
(
LOG_ERR
,
_
(
"Quitting (numeric reason %d)"
)
,
reason
);
break
;
}
...
...
Please
register
or
sign in
to post a comment