diff options
author | Maurice van der Pot <griffon26@gentoo.org> | 2004-08-26 13:50:28 +0000 |
---|---|---|
committer | Maurice van der Pot <griffon26@gentoo.org> | 2004-08-26 13:50:28 +0000 |
commit | 08907fb068c365eb58d700ff2b542b4755937a92 (patch) | |
tree | d3b9466b032ebe73bdce037fe1b554fbf8761e85 /net-mail/tpop3d/files | |
parent | Bump (Manifest recommit) (diff) | |
download | gentoo-2-08907fb068c365eb58d700ff2b542b4755937a92.tar.gz gentoo-2-08907fb068c365eb58d700ff2b542b4755937a92.tar.bz2 gentoo-2-08907fb068c365eb58d700ff2b542b4755937a92.zip |
Fixed error message and marked stable on x86
Diffstat (limited to 'net-mail/tpop3d/files')
-rw-r--r-- | net-mail/tpop3d/files/tpop3d-1.5.3-invalid-user-message.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/net-mail/tpop3d/files/tpop3d-1.5.3-invalid-user-message.patch b/net-mail/tpop3d/files/tpop3d-1.5.3-invalid-user-message.patch new file mode 100644 index 000000000000..f462ad082408 --- /dev/null +++ b/net-mail/tpop3d/files/tpop3d-1.5.3-invalid-user-message.patch @@ -0,0 +1,21 @@ +diff -ruN tpop3d-1.5.3/auth_mysql.c tpop3d-1.5.3-invalid-user-message-patch/auth_mysql.c +--- tpop3d-1.5.3/auth_mysql.c 2003-07-15 01:31:20.000000000 +0200 ++++ tpop3d-1.5.3-invalid-user-message-patch/auth_mysql.c 2004-08-26 15:02:03.033018776 +0200 +@@ -267,7 +267,7 @@ + + /* User was not lying (about her password) */ + if (!parse_uid((const char*)row[2], &uid)) { +- log_print(LOG_ERR, _("auth_mysql_new_apop: unix user `%s' for %s does not make sense"), row[3], who); ++ log_print(LOG_ERR, _("auth_mysql_new_apop: unix user `%s' for %s does not make sense"), row[2], who); + break; + } + +@@ -367,7 +367,7 @@ + } + + if (!parse_uid((const char*)row[2], &uid)) { +- log_print(LOG_ERR, _("auth_mysql_new_user_pass: unix user `%s' for %s does not make sense"), row[3], who); ++ log_print(LOG_ERR, _("auth_mysql_new_user_pass: unix user `%s' for %s does not make sense"), row[2], who); + break; + } + |