[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/emacs-24 r111329: * pop.c: Fix ERRMAX typo
From: |
Paul Eggert |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/emacs-24 r111329: * pop.c: Fix ERRMAX typo (Bug#13925). |
Date: |
Tue, 12 Mar 2013 15:00:07 -0700 |
User-agent: |
Bazaar (2.5.0) |
------------------------------------------------------------
revno: 111329
fixes bug: http://debbugs.gnu.org/13925
committer: Paul Eggert <address@hidden>
branch nick: emacs-24
timestamp: Tue 2013-03-12 15:00:07 -0700
message:
* pop.c: Fix ERRMAX typo (Bug#13925).
(socket_connection) [!HAVE_KRB5_ERROR_TEXT && HAVE_KRB5_ERROR_E_TEXT]:
Use ERROR_MAX, not ERRMAX.
modified:
lib-src/ChangeLog
lib-src/pop.c
=== modified file 'lib-src/ChangeLog'
--- a/lib-src/ChangeLog 2013-03-11 02:35:23 +0000
+++ b/lib-src/ChangeLog 2013-03-12 22:00:07 +0000
@@ -1,3 +1,9 @@
+2013-03-12 Paul Eggert <address@hidden>
+
+ * pop.c: Fix ERRMAX typo (Bug#13925).
+ (socket_connection) [!HAVE_KRB5_ERROR_TEXT && HAVE_KRB5_ERROR_E_TEXT]:
+ Use ERROR_MAX, not ERRMAX.
+
2013-03-11 Glenn Morris <address@hidden>
* Version 24.3 released.
=== modified file 'lib-src/pop.c'
--- a/lib-src/pop.c 2013-01-01 09:11:05 +0000
+++ b/lib-src/pop.c 2013-03-12 22:00:07 +0000
@@ -1198,7 +1198,7 @@
}
#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)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/emacs-24 r111329: * pop.c: Fix ERRMAX typo (Bug#13925).,
Paul Eggert <=