(check_login_delay): Fix error message
Showing
1 changed file
with
3 additions
and
2 deletions
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 | } | ... | ... |
-
Please register or sign in to post a comment