pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/samba Fix DFS for Windows XP and 2003 clients.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/767cdc678651
branches:  trunk
changeset: 460860:767cdc678651
user:      kim <kim%pkgsrc.org@localhost>
date:      Fri Sep 05 19:13:41 2003 +0000

description:
Fix DFS for Windows XP and 2003 clients.
http://lists.xsec.it/pipermail/samba-it/2003-April/000321.html

diffstat:

 net/samba/Makefile         |   4 ++--
 net/samba/distinfo         |   3 ++-
 net/samba/patches/patch-as |  16 ++++++++++++++++
 3 files changed, 20 insertions(+), 3 deletions(-)

diffs (47 lines):

diff -r 4785b4dfae8b -r 767cdc678651 net/samba/Makefile
--- a/net/samba/Makefile        Fri Sep 05 19:00:57 2003 +0000
+++ b/net/samba/Makefile        Fri Sep 05 19:13:41 2003 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.101 2003/08/30 22:51:27 jlam Exp $
+# $NetBSD: Makefile,v 1.102 2003/09/05 19:13:41 kim Exp $
 
 .include "Makefile.common"
-PKGREVISION=           2
+PKGREVISION=           3
 
 MAINTAINER=            tech-pkg%NetBSD.org@localhost
 HOMEPAGE=              http://www.samba.org/
diff -r 4785b4dfae8b -r 767cdc678651 net/samba/distinfo
--- a/net/samba/distinfo        Fri Sep 05 19:00:57 2003 +0000
+++ b/net/samba/distinfo        Fri Sep 05 19:13:41 2003 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.29 2003/06/04 06:12:21 jlam Exp $
+$NetBSD: distinfo,v 1.30 2003/09/05 19:13:41 kim Exp $
 
 SHA1 (samba-2.2.8a.tar.bz2) = f25ff456bf7ac58d32eb0209c15ce0b2fa6d7450
 Size (samba-2.2.8a.tar.bz2) = 4505672 bytes
@@ -13,3 +13,4 @@
 SHA1 (patch-ap) = cc0b3d73d0c7de4cd46e66b0d66b2c3bbaddeb41
 SHA1 (patch-aq) = ea9cd9097cf91dd2b9f1acd9e6ff6f9445505774
 SHA1 (patch-ar) = e5b442fb7eb837bb2771ac71c73e6f95ae6fdfc2
+SHA1 (patch-as) = 019cd56e1a0f3c4517e1701e09d0a7cbd741df93
diff -r 4785b4dfae8b -r 767cdc678651 net/samba/patches/patch-as
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/net/samba/patches/patch-as        Fri Sep 05 19:13:41 2003 +0000
@@ -0,0 +1,16 @@
+$NetBSD: patch-as,v 1.1 2003/09/05 19:13:42 kim Exp $
+
+Fix DFS referrals for Windows XP and 2003 clients.
+http://lists.xsec.it/pipermail/samba-it/2003-April/000321.html
+
+--- smbd/trans2.c.orig Sun Apr  6 21:54:00 2003
++++ smbd/trans2.c      Fri Sep  5 14:47:28 2003
+@@ -3041,7 +3041,7 @@
+ {
+       char *params = *pparams;
+       enum remote_arch_types ra_type = get_remote_arch();
+-      BOOL NT_arch = ((ra_type == RA_WINNT) || (ra_type == RA_WIN2K));
++      BOOL NT_arch = ((ra_type == RA_WINNT) || (ra_type == RA_WIN2K) || (ra_type == RA_WINXP) || (ra_type == RA_WIN2K3));
+       pstring pathname;
+       int reply_size = 0;
+       int max_referral_level;



Home | Main Index | Thread Index | Old Index