diff options
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/reply.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 5533ee07d1..df7dac7b09 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -528,6 +528,15 @@ void reply_special(struct smbd_server_connection *sconn, char *inbuf) exit_server_cleanly("retargeted client"); } + /* + * Windows NT/2k uses "*SMBSERVER" and XP uses + * "*SMBSERV" arrggg!!! + */ + if (strequal(name1, "*SMBSERVER ") + || strequal(name1, "*SMBSERV ")) { + fstrcpy(name1, sconn->client_id.addr); + } + set_local_machine_name(name1, True); set_remote_machine_name(name2, True); |