diff options
author | Gerald Carter <jerry@samba.org> | 2000-08-05 19:18:25 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2000-08-05 19:18:25 +0000 |
commit | 8705fbc42cb3d93a7a56f2673e6e1a19d346abee (patch) | |
tree | 8637b107ff6d91ac37724dead0690b1c7dcd4114 /source3/rpc_parse | |
parent | cfb5d7d84c63d2b13e9d756a1c31b07a88c21e3f (diff) | |
download | samba-8705fbc42cb3d93a7a56f2673e6e1a19d346abee.tar.gz samba-8705fbc42cb3d93a7a56f2673e6e1a19d346abee.tar.bz2 samba-8705fbc42cb3d93a7a56f2673e6e1a19d346abee.zip |
it is not my day it seems. :-(
Fixed missing )
j-
(This used to be commit 7b69cbbde36e51f8f7b74691428a04e8871d8b4a)
Diffstat (limited to 'source3/rpc_parse')
-rw-r--r-- | source3/rpc_parse/parse_misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_parse/parse_misc.c b/source3/rpc_parse/parse_misc.c index 1cc072b7b5..c22f1a5d2e 100644 --- a/source3/rpc_parse/parse_misc.c +++ b/source3/rpc_parse/parse_misc.c @@ -885,7 +885,7 @@ void init_unistr2_from_unistr (UNISTR2 *to, UNISTR *from) found = False; while (!found) { - if (from->buffer)[i]=='\0') + if ((from->buffer)[i]=='\0') found = True; else i++; |