diff options
author | Jeremy Allison <jra@samba.org> | 2004-03-13 00:28:55 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2004-03-13 00:28:55 +0000 |
commit | e4a01b392c518d3706d86d4938ac85707fe275e6 (patch) | |
tree | 51f4521975981b21edc7ae40a9ba2ca07dbba5cf /source3/smbd | |
parent | f17b47b7fdd41d4daf16545a177bab9aafb2b14f (diff) | |
download | samba-e4a01b392c518d3706d86d4938ac85707fe275e6.tar.gz samba-e4a01b392c518d3706d86d4938ac85707fe275e6.tar.bz2 samba-e4a01b392c518d3706d86d4938ac85707fe275e6.zip |
First part of patch from moriyama@miraclelinux.com (MORIYAMA Masayuki) to
fix up netbios names with mb strings. Includes reformat of libsmb/nmblib.c
so it's readable.
Jeremy.
(This used to be commit beca3829d1140bf7c2e394993a02dff1f2cf7bbd)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index aeac9e4c84..bca7a75fbb 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -171,7 +171,7 @@ int reply_special(char *inbuf,char *outbuf) int outsize = 4; int msg_type = CVAL(inbuf,0); int msg_flags = CVAL(inbuf,1); - pstring name1,name2; + fstring name1,name2; char name_type = 0; static BOOL already_got_session = False; |