diff options
author | Gerald Carter <jerry@samba.org> | 2003-02-27 21:22:36 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-02-27 21:22:36 +0000 |
commit | 0d30cdf66c4e186e20a09e1e8b39d501e662ae50 (patch) | |
tree | 74c8f01db2ef1ff82af40ecb1035d03e0f327bc2 /source3/lib | |
parent | ff5d95f0efa6370d4aa747e28ba8e5cac489dc44 (diff) | |
download | samba-0d30cdf66c4e186e20a09e1e8b39d501e662ae50.tar.gz samba-0d30cdf66c4e186e20a09e1e8b39d501e662ae50.tar.bz2 samba-0d30cdf66c4e186e20a09e1e8b39d501e662ae50.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 c7712fa054d21b4884a78b7ea6c0fb8b3d637c6b)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util.c | 3 |
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; |