r16981 - in /trunk/libauthen-krb5-perl/debian: changelog patches/fix-get-in-tkt-with-password patches/series

rra at users.alioth.debian.org rra at users.alioth.debian.org
Sat Mar 8 22:23:05 UTC 2008


Author: rra
Date: Sat Mar  8 22:23:04 2008
New Revision: 16981

URL: http://svn.debian.org/wsvn/?sc=1&rev=16981
Log:
* Fix the krb5_get_in_tkt_with_password backwards-compatibility
  interface to call the correct new function instead of the old
  function with the wrong arguments.

Added:
    trunk/libauthen-krb5-perl/debian/patches/fix-get-in-tkt-with-password
Modified:
    trunk/libauthen-krb5-perl/debian/changelog
    trunk/libauthen-krb5-perl/debian/patches/series

Modified: trunk/libauthen-krb5-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libauthen-krb5-perl/debian/changelog?rev=16981&op=diff
==============================================================================
--- trunk/libauthen-krb5-perl/debian/changelog (original)
+++ trunk/libauthen-krb5-perl/debian/changelog Sat Mar  8 22:23:04 2008
@@ -1,3 +1,11 @@
+libauthen-krb5-perl (1.7-2) UNRELEASED; urgency=low
+
+  * Fix the krb5_get_in_tkt_with_password backwards-compatibility
+    interface to call the correct new function instead of the old
+    function with the wrong arguments.
+
+ -- Russ Allbery <rra at debian.org>  Sat, 08 Mar 2008 14:22:50 -0800
+
 libauthen-krb5-perl (1.7-1) unstable; urgency=low
 
   [ Jose Luis Rivas ]

Added: trunk/libauthen-krb5-perl/debian/patches/fix-get-in-tkt-with-password
URL: http://svn.debian.org/wsvn/trunk/libauthen-krb5-perl/debian/patches/fix-get-in-tkt-with-password?rev=16981&op=file
==============================================================================
--- trunk/libauthen-krb5-perl/debian/patches/fix-get-in-tkt-with-password (added)
+++ trunk/libauthen-krb5-perl/debian/patches/fix-get-in-tkt-with-password Sat Mar  8 22:23:04 2008
@@ -1,0 +1,11 @@
+--- Krb5.xs.orig
++++ Krb5.xs
+@@ -392,7 +392,7 @@
+ 	err = krb5_unparse_name(context, server, &service);
+ 	if (err) XSRETURN_UNDEF;
+ 
+-	err = krb5_get_in_tkt_with_password(context, &cr, client, password,
++	err = krb5_get_init_creds_password(context, &cr, client, password,
+ 		NULL, NULL, 0, service, &opt);
+ 	free(service);
+ 	if (err) XSRETURN_UNDEF;

Modified: trunk/libauthen-krb5-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/trunk/libauthen-krb5-perl/debian/patches/series?rev=16981&op=diff
==============================================================================
--- trunk/libauthen-krb5-perl/debian/patches/series (original)
+++ trunk/libauthen-krb5-perl/debian/patches/series Sat Mar  8 22:23:04 2008
@@ -1,2 +1,3 @@
 fix_perl_path.patch
 DebianMakefile_lib_linking.patch
+fix-get-in-tkt-with-password -p0




More information about the Pkg-perl-cvs-commits mailing list