diff options
author | glewis <glewis@FreeBSD.org> | 2004-04-01 00:13:28 +0800 |
---|---|---|
committer | glewis <glewis@FreeBSD.org> | 2004-04-01 00:13:28 +0800 |
commit | 266cc3ecf1e106cb333349bb0d42113c85c93772 (patch) | |
tree | b309db517a9b27bd7eb56d3947fe6a90632a22b3 /net/samba | |
parent | 4e50a8784ac80c3326e46109693f3a873f6db216 (diff) | |
download | freebsd-ports-gnome-266cc3ecf1e106cb333349bb0d42113c85c93772.tar.gz freebsd-ports-gnome-266cc3ecf1e106cb333349bb0d42113c85c93772.tar.zst freebsd-ports-gnome-266cc3ecf1e106cb333349bb0d42113c85c93772.zip |
. Fix browsing of DFS links by Windows XP and Windows 2003 clients.
PR: 64996
Submitted by: Dmitry A Grigorovich <odip@bionet.nsc.ru>
Diffstat (limited to 'net/samba')
-rw-r--r-- | net/samba/Makefile | 2 | ||||
-rw-r--r-- | net/samba/files/patch-source::smbd::trans2.c | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/net/samba/Makefile b/net/samba/Makefile index 76bd84b27dca..3bae91b97c7a 100644 --- a/net/samba/Makefile +++ b/net/samba/Makefile @@ -7,7 +7,7 @@ PORTNAME= samba PORTVERSION= 2.2.8a -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SAMBA} MASTER_SITE_SUBDIR= . old-versions diff --git a/net/samba/files/patch-source::smbd::trans2.c b/net/samba/files/patch-source::smbd::trans2.c new file mode 100644 index 000000000000..b5a01c5462dd --- /dev/null +++ b/net/samba/files/patch-source::smbd::trans2.c @@ -0,0 +1,13 @@ +$FreeBSD$ + +--- source/smbd/trans2.c 2003/03/07 23:35:00 1.149.4.98 ++++ source/smbd/trans2.c 2003/03/25 23:50:47 1.149.4.99 +@@ -3043,7 +3043,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; |