diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2004-03-31 16:13:28 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2004-03-31 16:13:28 +0000 |
commit | 62f26ef5b146a47b0a98588f2135e8cb2b58fec3 (patch) | |
tree | 0ddde229d61ee4fd90bebbae97b7a8d016db3e87 /net/samba | |
parent | 5fca99483d6815696f9847eeed0e75b2522f095c (diff) | |
download | ports-62f26ef5b146a47b0a98588f2135e8cb2b58fec3.tar.gz ports-62f26ef5b146a47b0a98588f2135e8cb2b58fec3.zip |
Notes
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; |