mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
Make this an fstrcat(), as this seems to fix some weird issue with the server
name being truncated... (either way, it's the correct thing to do).
Andrew Bartlett
(This used to be commit a058960c15
)
This commit is contained in:
parent
0041b2c46e
commit
e11d91e201
@ -272,8 +272,8 @@ reporting %s domain %s 0x%x ntversion=%x lm_nt token=%x lm_20 token=%x\n",
|
||||
pull_ucs2_fstring(asccomp, unicomp);
|
||||
DEBUG(3,("process_logon_packet: SAMLOGON user %s\n", ascuser));
|
||||
|
||||
fstrcpy(reply_name,"\\\\"); /* Here it wants \\LOGONSERVER. */
|
||||
fstrcpy(reply_name+2,my_name);
|
||||
fstrcpy(reply_name, "\\\\"); /* Here it wants \\LOGONSERVER. */
|
||||
fstrcat(reply_name, my_name);
|
||||
|
||||
DEBUG(3,("process_logon_packet: SAMLOGON request from %s(%s) for %s, returning logon svr %s domain %s code %x token=%x\n",
|
||||
asccomp,inet_ntoa(p->ip), ascuser, reply_name, lp_workgroup(),
|
||||
|
Loading…
Reference in New Issue
Block a user