diff options
author | Derrell Lipman <derrell.lipman@unwireduniverse.com> | 2008-07-16 09:45:02 -0400 |
---|---|---|
committer | Derrell Lipman <derrell.lipman@unwireduniverse.com> | 2008-07-16 09:45:02 -0400 |
commit | a49f6f17c622fbdc3f358a923b6a682ff7504fda (patch) | |
tree | d1120aedf84a381f9c23976820b368ba38862fad | |
parent | df1554192683aacc518c4a95715089d4eab51192 (diff) | |
download | samba-a49f6f17c622fbdc3f358a923b6a682ff7504fda.tar.gz samba-a49f6f17c622fbdc3f358a923b6a682ff7504fda.tar.bz2 samba-a49f6f17c622fbdc3f358a923b6a682ff7504fda.zip |
Fix typos.
libsmbclient doesn't have bool defined; rather it uses smbc_bool
Derrell
(This used to be commit e1ade80f468e8ed827f9d4fd035d79546fa0ee0a)
-rw-r--r-- | source3/include/libsmbclient.h | 2 | ||||
-rw-r--r-- | source3/libsmb/libsmb_context.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/libsmbclient.h b/source3/include/libsmbclient.h index 2828e9e780..5fe4fa8c60 100644 --- a/source3/include/libsmbclient.h +++ b/source3/include/libsmbclient.h @@ -2584,7 +2584,7 @@ void smbc_set_credentials(char *workgroup, char *user, char *password, - bool use_kerberos, + smbc_bool use_kerberos, char *signing_state); diff --git a/source3/libsmb/libsmb_context.c b/source3/libsmb/libsmb_context.c index 51948d1648..b9b74fe7d2 100644 --- a/source3/libsmb/libsmb_context.c +++ b/source3/libsmb/libsmb_context.c @@ -617,7 +617,7 @@ void smbc_set_credentials(char *workgroup, char *user, char *password, - bool use_kerberos, + smbc_bool use_kerberos, char *signing_state) { |