diff options
author | Jeremy Allison <jra@samba.org> | 2009-02-20 16:41:41 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-02-20 16:41:41 -0800 |
commit | 87a4c09b9bd37a967abcf874888a5d5161e7434f (patch) | |
tree | e01c5a99704f529d9de6e0c96f37b189c4e4f1f2 /source3/include | |
parent | d9a842b26f306a6328e0fb4f226ed8292a8c221a (diff) | |
download | samba-87a4c09b9bd37a967abcf874888a5d5161e7434f.tar.gz samba-87a4c09b9bd37a967abcf874888a5d5161e7434f.tar.bz2 samba-87a4c09b9bd37a967abcf874888a5d5161e7434f.zip |
Change smbc_set_credentials_with_fallback() (unreleased) to use
const approptiately.
Jeremy.
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/libsmbclient.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/include/libsmbclient.h b/source3/include/libsmbclient.h index efc471c85b..8c642b1794 100644 --- a/source3/include/libsmbclient.h +++ b/source3/include/libsmbclient.h @@ -2692,9 +2692,9 @@ smbc_set_credentials(char *workgroup, void smbc_set_credentials_with_fallback(SMBCCTX *ctx, - char *workgroup, - char *user, - char *password); + const char *workgroup, + const char *user, + const char *password); /** * @ingroup structure |