Commit d6080cfd d6080cfd4372c2da9b24889efd4c0cebfa46002b by Sergey Poznyakoff

(check_login_delay): Fix error message

1 parent 0a630b5e
1 /* GNU Mailutils -- a suite of utilities for electronic mail 1 /* GNU Mailutils -- a suite of utilities for electronic mail
2 Copyright (C) 2003 Free Software Foundation, Inc. 2 Copyright (C) 2003, 2007 Free Software Foundation, Inc.
3 3
4 GNU Mailutils is free software; you can redistribute it and/or modify 4 GNU Mailutils is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by 5 it under the terms of the GNU General Public License as published by
...@@ -59,7 +59,8 @@ check_login_delay (char *username) ...@@ -59,7 +59,8 @@ check_login_delay (char *username)
59 rc = mu_dbm_fetch (db, key, &data); 59 rc = mu_dbm_fetch (db, key, &data);
60 if (rc) 60 if (rc)
61 { 61 {
62 syslog (LOG_ERR, _("Can't fetch APOP data: %s"), mu_strerror (rc)); 62 syslog (LOG_ERR, _("Can't fetch login delay data: %s"),
63 mu_strerror (rc));
63 mu_dbm_close (db); 64 mu_dbm_close (db);
64 return 0; 65 return 0;
65 } 66 }
......