summaryrefslogtreecommitdiffstats
path: root/source/lib/util_str.c
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1999-10-07 22:10:29 +0000
committerLuke Leighton <lkcl@samba.org>1999-10-07 22:10:29 +0000
commite5b80bd2f76fda70e41e4a9007eb035dab92ed8e (patch)
tree3a0df71b65c74a16f245a67ecc94a819e7d2af69 /source/lib/util_str.c
parent16dd94db1fd2ed8ed7d240c5aac5a481b64cd26d (diff)
downloadsamba-e5b80bd2f76fda70e41e4a9007eb035dab92ed8e.tar.gz
samba-e5b80bd2f76fda70e41e4a9007eb035dab92ed8e.tar.xz
samba-e5b80bd2f76fda70e41e4a9007eb035dab92ed8e.zip
- added rudimentary CAP_UNICODE support because i thought it was part of
a problem i was having. - added rudimentary CAP_STATUS32 support for same reason. - added hard-coded, copy-the-same-data-from-over-the-wire version of CAP_EXTENDED_SECURITY, which is a security-blob to encapsulate GSSAPI which encodes SPNEGO which is used to negotiate Kerberos or NTLMSSP. i have implemented NTLMSSP which negotiates NTLMv1 or NTLMv2 and 40-bit or 128-bit etc. i have implemented NTLMv1 / 40-bit. *whew*.
Diffstat (limited to 'source/lib/util_str.c')
-rw-r--r--source/lib/util_str.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/util_str.c b/source/lib/util_str.c
index 4c6a9937778..636be164acd 100644
--- a/source/lib/util_str.c
+++ b/source/lib/util_str.c
@@ -462,7 +462,7 @@ char *skip_string(char *buf,size_t n)
{
while (n--)
buf += strlen(buf) + 1;
- return(buf);
+ return buf;
}
/*******************************************************************