summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1997-12-03 03:57:29 +0000
committerAndrew Tridgell <tridge@samba.org>1997-12-03 03:57:29 +0000
commit93f0619e049d1598db0c3022aeccf33910b0550f (patch)
tree54e94f939ee3b98316d43e1dc2942e9ed67064d6
parent7a2a45eae2e9a930d3243498d4e66cc2f5e4d370 (diff)
downloadsamba-93f0619e049d1598db0c3022aeccf33910b0550f.tar.gz
samba-93f0619e049d1598db0c3022aeccf33910b0550f.tar.xz
samba-93f0619e049d1598db0c3022aeccf33910b0550f.zip
allow local_machine and remote_machine (%L and %m macros) to contain
spaces
-rw-r--r--source/smbd/reply.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/source/smbd/reply.c b/source/smbd/reply.c
index 06b96b13d9f..c903c7a1fd2 100644
--- a/source/smbd/reply.c
+++ b/source/smbd/reply.c
@@ -73,7 +73,6 @@ int reply_special(char *inbuf,char *outbuf)
pstring name1,name2;
extern fstring remote_machine;
extern fstring local_machine;
- char *p;
int len;
char name_type = 0;
@@ -96,21 +95,18 @@ int reply_special(char *inbuf,char *outbuf)
name1,name2));
fstrcpy(remote_machine,name2);
+ remote_machine[15] = 0;
trim_string(remote_machine," "," ");
- p = strchr(remote_machine,' ');
strlower(remote_machine);
- if (p) *p = 0;
fstrcpy(local_machine,name1);
- trim_string(local_machine," "," ");
len = strlen(local_machine);
if (len == 16) {
name_type = local_machine[15];
local_machine[15] = 0;
}
- p = strchr(local_machine,' ');
+ trim_string(local_machine," "," ");
strlower(local_machine);
- if (p) *p = 0;
if (name_type == 'R') {
/* We are being asked for a pathworks session ---