diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2013-03-12 15:00:07 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2013-03-12 15:00:07 -0700 |
commit | b2e37dad6876445f53037e82280cc2b77e6a5086 (patch) | |
tree | 52ad963a8ef7565272e67d87de46aae38b1e7c3d /lib-src/pop.c | |
parent | c07659054603ef1d7ce4eaeb5b79b50131abf265 (diff) | |
download | emacs-b2e37dad6876445f53037e82280cc2b77e6a5086.tar.gz |
* pop.c: Fix ERRMAX typo (Bug#13925).
(socket_connection) [!HAVE_KRB5_ERROR_TEXT && HAVE_KRB5_ERROR_E_TEXT]:
Use ERROR_MAX, not ERRMAX.
Diffstat (limited to 'lib-src/pop.c')
-rw-r--r-- | lib-src/pop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/pop.c b/lib-src/pop.c index ba384db3d19..1f3f82baa68 100644 --- a/lib-src/pop.c +++ b/lib-src/pop.c @@ -1198,7 +1198,7 @@ socket_connection (char *host, int flags) } #elif defined HAVE_KRB5_ERROR_E_TEXT if (err_ret && err_ret->e_text && **err_ret->e_text) - snprintf (pop_error + pop_error_len, ERRMAX - pop_error_len, + snprintf (pop_error + pop_error_len, ERROR_MAX - pop_error_len, " [server says '%s']", *err_ret->e_text); #endif if (err_ret) |