diff options
| author | Paul Eggert | 2013-03-12 15:00:07 -0700 |
|---|---|---|
| committer | Paul Eggert | 2013-03-12 15:00:07 -0700 |
| commit | b2e37dad6876445f53037e82280cc2b77e6a5086 (patch) | |
| tree | 52ad963a8ef7565272e67d87de46aae38b1e7c3d /lib-src | |
| parent | c07659054603ef1d7ce4eaeb5b79b50131abf265 (diff) | |
| download | emacs-b2e37dad6876445f53037e82280cc2b77e6a5086.tar.gz emacs-b2e37dad6876445f53037e82280cc2b77e6a5086.zip | |
* 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')
| -rw-r--r-- | lib-src/ChangeLog | 6 | ||||
| -rw-r--r-- | lib-src/pop.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 871f572facd..68594311332 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2013-03-12 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * pop.c: Fix ERRMAX typo (Bug#13925). | ||
| 4 | (socket_connection) [!HAVE_KRB5_ERROR_TEXT && HAVE_KRB5_ERROR_E_TEXT]: | ||
| 5 | Use ERROR_MAX, not ERRMAX. | ||
| 6 | |||
| 1 | 2013-03-11 Glenn Morris <rgm@gnu.org> | 7 | 2013-03-11 Glenn Morris <rgm@gnu.org> |
| 2 | 8 | ||
| 3 | * Version 24.3 released. | 9 | * Version 24.3 released. |
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) | |||
| 1198 | } | 1198 | } |
| 1199 | #elif defined HAVE_KRB5_ERROR_E_TEXT | 1199 | #elif defined HAVE_KRB5_ERROR_E_TEXT |
| 1200 | if (err_ret && err_ret->e_text && **err_ret->e_text) | 1200 | if (err_ret && err_ret->e_text && **err_ret->e_text) |
| 1201 | snprintf (pop_error + pop_error_len, ERRMAX - pop_error_len, | 1201 | snprintf (pop_error + pop_error_len, ERROR_MAX - pop_error_len, |
| 1202 | " [server says '%s']", *err_ret->e_text); | 1202 | " [server says '%s']", *err_ret->e_text); |
| 1203 | #endif | 1203 | #endif |
| 1204 | if (err_ret) | 1204 | if (err_ret) |