summaryrefslogtreecommitdiff
path: root/source3/smbparse.c
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1997-10-09 14:40:46 +0000
committerLuke Leighton <lkcl@samba.org>1997-10-09 14:40:46 +0000
commitad54a5671405374b6308929154c6922bc6a7d0d7 (patch)
tree1a9d7dae275a6e395cd9c6c3e65f485f2ab04c2f /source3/smbparse.c
parent228cef8d01081e7cac1d90e5b568a19937404245 (diff)
downloadsamba-ad54a5671405374b6308929154c6922bc6a7d0d7.tar.gz
samba-ad54a5671405374b6308929154c6922bc6a7d0d7.tar.bz2
samba-ad54a5671405374b6308929154c6922bc6a7d0d7.zip
credentials.c:
use UTIME structure (defined and commented in smb.h to be time, secs, since 01jan1970) pipes.c: another sub-function. util.c: added char *unistr2(uint16 *buff) function. same as unistr except it takes uint16* instead of char*. smbparse.c smb.h: more structure sorting. proto.h: the usual. (This used to be commit 72a86f514f0c92b69499718e63f5dd73ebece56e)
Diffstat (limited to 'source3/smbparse.c')
-rw-r--r--source3/smbparse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbparse.c b/source3/smbparse.c
index 0d93c2e8ad..01438281ef 100644
--- a/source3/smbparse.c
+++ b/source3/smbparse.c
@@ -513,7 +513,7 @@ char* smb_io_dom_name(BOOL io, DOM_NAME *name, char *q, char *base, int align)
/* don't know if len is specified by uni_str_len member... */
/* assume unicode string is unicode-null-terminated, instead */
- q = smb_io_unistr(io, &(name->buffer), q, base, align);
+ q = smb_io_unistr(io, &(name->str), q, base, align);
return q;
}