You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.3 KiB
66 lines
2.3 KiB
18 years ago
|
# --- T2-COPYRIGHT-NOTE-BEGIN ---
|
||
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
||
|
#
|
||
|
# T2 SDE: package/.../heimdal/emacs-pop.diff
|
||
|
# Copyright (C) 2004 - 2006 The T2 SDE Project
|
||
|
#
|
||
|
# More information can be found in the files COPYING and README.
|
||
|
#
|
||
|
# This patch file is dual-licensed. It is available under the license the
|
||
|
# patched project is licensed under, as long as it is an OpenSource license
|
||
|
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
|
||
|
# of the GNU General Public License as published by the Free Software
|
||
|
# Foundation; either version 2 of the License, or (at your option) any later
|
||
|
# version.
|
||
|
# --- T2-COPYRIGHT-NOTE-END ---
|
||
|
diff -urN emacs-21.4.orig/lib-src/pop.c emacs-21.4/lib-src/pop.c
|
||
|
--- emacs-21.4.orig/lib-src/pop.c 2002-05-17 13:26:37.000000000 +0200
|
||
|
+++ emacs-21.4/lib-src/pop.c 2005-08-16 16:17:31.121406750 +0200
|
||
|
@@ -1188,16 +1188,16 @@
|
||
|
krb5_free_principal (kcontext, server);
|
||
|
if (rem)
|
||
|
{
|
||
|
- if (err_ret && err_ret->text.length)
|
||
|
+ if (err_ret && err_ret->e_data->length)
|
||
|
{
|
||
|
strcpy (pop_error, KRB_ERROR);
|
||
|
strncat (pop_error, error_message (rem),
|
||
|
ERROR_MAX - sizeof (KRB_ERROR));
|
||
|
strncat (pop_error, " [server says '",
|
||
|
ERROR_MAX - strlen (pop_error) - 1);
|
||
|
- strncat (pop_error, err_ret->text.data,
|
||
|
+ strncat (pop_error, err_ret->e_data->data,
|
||
|
min (ERROR_MAX - strlen (pop_error) - 1,
|
||
|
- err_ret->text.length));
|
||
|
+ err_ret->e_data->length));
|
||
|
strncat (pop_error, "']",
|
||
|
ERROR_MAX - strlen (pop_error) - 1);
|
||
|
}
|
||
|
diff -urN emacs-21.4.orig/src/config.in emacs-21.4/src/config.in
|
||
|
--- emacs-21.4.orig/src/config.in 2002-07-09 00:23:31.000000000 +0200
|
||
|
+++ emacs-21.4/src/config.in 2005-08-16 16:21:06.554870500 +0200
|
||
|
@@ -198,12 +198,12 @@
|
||
|
#undef HAVE_LIBKRB4
|
||
|
#undef HAVE_LIBDES
|
||
|
#undef HAVE_LIBDES425
|
||
|
-#undef HAVE_LIBKRB5
|
||
|
+#define HAVE_LIBKRB5
|
||
|
#undef HAVE_LIBCRYPTO
|
||
|
#undef HAVE_LIBK5CRYPTO
|
||
|
#undef HAVE_LIBCOM_ERR
|
||
|
/* header files */
|
||
|
-#undef HAVE_KRB5_H
|
||
|
+#define HAVE_KRB5_H
|
||
|
#undef HAVE_DES_H
|
||
|
#undef HAVE_KRB_H
|
||
|
#undef HAVE_KERBEROSIV_DES_H
|
||
|
@@ -213,7 +213,7 @@
|
||
|
#undef HAVE_COM_ERR_H
|
||
|
|
||
|
/* GSS-API libraries and headers */
|
||
|
-#undef HAVE_LIBGSSAPI_KRB5
|
||
|
+#define HAVE_LIBGSSAPI_KRB5
|
||
|
#undef HAVE_LIBGSSAPI
|
||
|
#undef HAVE_GSSAPI_H
|
||
|
|