Hello community, here is the log from the commit of package openssh checked in at Tue Oct 31 15:05:01 CET 2006. -------- --- openssh/openssh.changes 2006-10-10 16:07:29.000000000 +0200 +++ /mounts/work_src_done/STABLE/openssh/openssh.changes 2006-10-31 14:06:26.000000000 +0100 @@ -1,0 +2,6 @@ +Tue Oct 31 14:04:52 CET 2006 - anicka@suse.cz + +- fix gssapi_krb5-fix patch [#215615] +- fix xauth patch + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ openssh-askpass-gnome.spec ++++++ --- /var/tmp/diff_new_pack.uKuh8R/_old 2006-10-31 15:00:45.000000000 +0100 +++ /var/tmp/diff_new_pack.uKuh8R/_new 2006-10-31 15:00:45.000000000 +0100 @@ -15,7 +15,7 @@ License: Other License(s), see package Group: Productivity/Networking/SSH Version: 4.4p1 -Release: 3 +Release: 12 Requires: openssh = %{version} openssh-askpass = %{version} Autoreqprov: on Summary: A GNOME-Based Passphrase Dialog for OpenSSH @@ -74,7 +74,7 @@ %patch26 -p1 %patch27 -p1 %patch28 -%patch42 -p1 +%patch42 %build %{?suse_update_config:%{suse_update_config}} ++++++ openssh.spec ++++++ --- /var/tmp/diff_new_pack.uKuh8R/_old 2006-10-31 15:00:45.000000000 +0100 +++ /var/tmp/diff_new_pack.uKuh8R/_new 2006-10-31 15:00:45.000000000 +0100 @@ -19,7 +19,7 @@ %define _appdefdir %{_prefix}/share/X11/app-defaults %endif BuildRequires: krb5-devel opensc-devel openssl-devel pam-devel tcpd-devel xorg-x11-devel -License: Other License(s), see package, X11/MIT +License: BSD License and BSD-like, Other License(s), see package Group: Productivity/Networking/SSH Obsoletes: ssh Provides: ssh @@ -28,7 +28,7 @@ Conflicts: nonfreessh Autoreqprov: on Version: 4.4p1 -Release: 3 +Release: 11 %define xversion 1.2.4.1 Summary: Secure Shell Client and Server (Remote Login Program) URL: http://www.openssh.com/ @@ -144,7 +144,7 @@ %patch38 -p1 %patch40 %patch41 -%patch42 -p1 +%patch42 cp -v %{SOURCE4} . cp -v %{SOURCE6} . cd ../x11-ssh-askpass-%{xversion} @@ -282,6 +282,9 @@ %config %_appdefdir/SshAskpass %changelog -n openssh +* Tue Oct 31 2006 - anicka@suse.cz +- fix gssapi_krb5-fix patch [#215615] +- fix xauth patch * Tue Oct 10 2006 - postadal@suse.cz - fixed building openssh from src.rpm [#176528] (gssapi_krb5-fix.patch) * Tue Oct 03 2006 - postadal@suse.cz @@ -324,8 +327,8 @@ scp.patch, sigalarm.patch * Mon Feb 13 2006 - postadal@suse.cz - upstream fixes -- fixed "scp a b c", when c is not directory (scp.patch) -- eliminate some code duplicated in privsep and non-privsep paths, and + - fixed "scp a b c", when c is not directory (scp.patch) + - eliminate some code duplicated in privsep and non-privsep paths, and explicitly clear SIGALRM handler (sigalarm.patch) * Fri Feb 03 2006 - postadal@suse.cz - fixed local arbitrary command execution vulnerability [#143435] ++++++ openssh-4.4p1-xauth.diff ++++++ --- /var/tmp/diff_new_pack.uKuh8R/_old 2006-10-31 15:00:46.000000000 +0100 +++ /var/tmp/diff_new_pack.uKuh8R/_new 2006-10-31 15:00:46.000000000 +0100 @@ -22,7 +22,7 @@ + debug("Running %.500s remove %.100s\n", + options.xauth_location, s->auth_display); + -+ snprintf(cmd, sizeof cmd, "unset XAUTHORITY && HOME=%.200s %s -q -", ++ snprintf(cmd, sizeof cmd, "unset XAUTHORITY && HOME=\"%.200s\" %s -q -", + s->pw->pw_dir, options.xauth_location); + f = popen(cmd, "w"); + if (f) { ++++++ openssh-gssapi_krb5-fix.patch ++++++ --- /var/tmp/diff_new_pack.uKuh8R/_old 2006-10-31 15:00:46.000000000 +0100 +++ /var/tmp/diff_new_pack.uKuh8R/_new 2006-10-31 15:00:46.000000000 +0100 @@ -1,36 +1,18 @@ -diff --fast -Ndpru openssh-4.2p1~/configure.ac openssh-4.2p1/configure.ac ---- openssh-4.2p1~/configure.ac 2005-08-31 18:59:49.000000000 +0200 -+++ openssh-4.2p1/configure.ac 2006-05-17 18:20:22.242036000 +0200 -@@ -2725,16 +2725,22 @@ AC_ARG_WITH(kerberos5, - ) - AC_SEARCH_LIBS(dn_expand, resolv) - -- AC_CHECK_LIB(gssapi,gss_init_sec_context, -- [ AC_DEFINE(GSSAPI) -- K5LIBS="-lgssapi $K5LIBS" ], -- [ AC_CHECK_LIB(gssapi_krb5,gss_init_sec_context, -- [ AC_DEFINE(GSSAPI) +--- configure.ac ++++ configure.ac +@@ -3217,7 +3217,14 @@ + K5LIBS="-lgssapi $K5LIBS" ], + [ AC_CHECK_LIB(gssapi_krb5,gss_init_sec_context, + [ AC_DEFINE(GSSAPI) - K5LIBS="-lgssapi_krb5 $K5LIBS" ], -- AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]), -- $K5LIBS) -- ], -- $K5LIBS) -+ AC_CHECK_LIB(gssapi,gss_init_sec_context, [ -+ AC_DEFINE(GSSAPI) -+ K5LIBS="-lgssapi $K5LIBS" -+ AC_CHECK_LIB(gssapi_krb5, gss_krb5_copy_ccache, [ -+ K5LIBS="-lgssapi_krb5 $K5LIBS" -+ ], [ -+ AC_MSG_WARN([Cannot find -lgssapi_krb5 with gss_krb5_copy_ccache()]) -+ ], -+ $K5LIBS -+ ) -+ ], [ -+ AC_MSG_WARN([Cannot find -lgssapi with gss_init_sec_context()]) -+ ], -+ $K5LIBS -+ ) -+ - - AC_CHECK_HEADER(gssapi.h, , - [ unset ac_cv_header_gssapi_h ++ K5LIBS="-lgssapi_krb5 $K5LIBS" ] ++ AC_CHECK_LIB(gssapi_krb5, gss_krb5_copy_ccache, [ ++ K5LIBS="-lgssapi_krb5 $K5LIBS" ++ ], [ ++ AC_MSG_WARN([Cannot find -lgssapi_krb5 with gss_krb5_copy_ccache()]) ++ ], ++ $K5LIBS ++ ), + AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]), + $K5LIBS) + ], ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org