summaryrefslogtreecommitdiff
path: root/source3/lib/util.c
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-02-27 21:21:02 +0000
committerGerald Carter <jerry@samba.org>2003-02-27 21:21:02 +0000
commit97e7d2ffae74c9c07b38143c8fb028ee91b153bd (patch)
treef2d04d7786542956284d21dc67bee5d78c1911b8 /source3/lib/util.c
parent5c82d3f00a2973b7f0881606d94ed36f0d0aa6be (diff)
downloadsamba-97e7d2ffae74c9c07b38143c8fb028ee91b153bd.tar.gz
samba-97e7d2ffae74c9c07b38143c8fb028ee91b153bd.tar.bz2
samba-97e7d2ffae74c9c07b38143c8fb028ee91b153bd.zip
additional fix for CR 601
* distinguish WinXP from Win2k * add a 1/3 of a second delay in OpenPrinter in order to trigger a LAN/WAN optimization in 2k clients. (This used to be commit 96570699d1b715f47c35aa211da6ec18f6fc4109)
Diffstat (limited to 'source3/lib/util.c')
-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 3958600cbd..15b75356a8 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -1764,6 +1764,9 @@ void set_remote_arch(enum remote_arch_types type)
case RA_WIN2K:
fstrcpy(remote_arch, "Win2K");
return;
+ case RA_WINXP:
+ fstrcpy(remote_arch, "WinXP");
+ return;
case RA_SAMBA:
fstrcpy(remote_arch,"Samba");
return;