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
4e07d766
...
4e07d766a7e39a783a54fffa7903282afb19d2a3
authored
2003-09-21 15:47:39 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Minor fix
1 parent
37e7e4df
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
imap4d/login.c
imap4d/login.c
View file @
4e07d76
...
...
@@ -42,7 +42,7 @@ imap4d_login (struct imap4d_command *command, char *arg)
if
(
auth_data
==
NULL
)
{
syslog
(
LOG_INFO
,
_
(
"User '%s': nonexistent"
),
arg
);
syslog
(
LOG_INFO
,
_
(
"User '%s': nonexistent"
),
username
);
return
util_finish
(
command
,
RESP_NO
,
"User name or passwd rejected"
);
}
...
...
@@ -50,7 +50,7 @@ imap4d_login (struct imap4d_command *command, char *arg)
openlog
(
"gnu-imap4d"
,
LOG_PID
,
log_facility
);
if
(
rc
)
{
syslog
(
LOG_INFO
,
_
(
"Login failed: %s"
),
arg
);
syslog
(
LOG_INFO
,
_
(
"Login failed: %s"
),
username
);
return
util_finish
(
command
,
RESP_NO
,
"User name or passwd rejected"
);
}
...
...
Please
register
or
sign in
to post a comment