Commit d6080cfd d6080cfd4372c2da9b24889efd4c0cebfa46002b by Sergey Poznyakoff

(check_login_delay): Fix error message

1 parent 0a630b5e
/* 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;
}
......