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
d6080cfd
...
d6080cfd4372c2da9b24889efd4c0cebfa46002b
authored
2007-02-25 18:12:56 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(check_login_delay): Fix error message
1 parent
0a630b5e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
pop3d/logindelay.c
pop3d/logindelay.c
View file @
d6080cf
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 2003 Free Software Foundation, Inc.
Copyright (C) 2003
, 2007
Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
...
...
@@ -59,7 +59,8 @@ check_login_delay (char *username)
rc
=
mu_dbm_fetch
(
db
,
key
,
&
data
);
if
(
rc
)
{
syslog
(
LOG_ERR
,
_
(
"Can't fetch APOP data: %s"
),
mu_strerror
(
rc
));
syslog
(
LOG_ERR
,
_
(
"Can't fetch login delay data: %s"
),
mu_strerror
(
rc
));
mu_dbm_close
(
db
);
return
0
;
}
...
...
Please
register
or
sign in
to post a comment