summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-03-12 15:40:43 +0000
committerGerald Carter <jerry@samba.org>2003-03-12 15:40:43 +0000
commitc992f66d733d230bc71f61ab4d13c08354ec0685 (patch)
tree8e8d8237267674628112d58d2e2b7e753c655102 /source3/lib
parentf4a8417d6fa058ec33753a4df1222131a73add3e (diff)
downloadsamba-c992f66d733d230bc71f61ab4d13c08354ec0685.tar.gz
samba-c992f66d733d230bc71f61ab4d13c08354ec0685.tar.bz2
samba-c992f66d733d230bc71f61ab4d13c08354ec0685.zip
adding some initiaial code to sert %a to Win2K3 (using Native LanMan string from .NET RC2)
(This used to be commit 4c823e61d14a33344deb887043b60b2e3c83416f)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/util.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c
index 15b75356a8..8d62db5ebb 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -1767,6 +1767,9 @@ void set_remote_arch(enum remote_arch_types type)
case RA_WINXP:
fstrcpy(remote_arch, "WinXP");
return;
+ case RA_WIN2K3:
+ fstrcpy(remote_arch, "Win2K3");
+ return;
case RA_SAMBA:
fstrcpy(remote_arch,"Samba");
return;