summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/Makefile.in4
-rw-r--r--source3/include/libsmbclient.h2
-rw-r--r--source3/libsmb/libsmb_context.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in
index 8b0a5f0ce2..cd70183711 100644
--- a/source3/Makefile.in
+++ b/source3/Makefile.in
@@ -1924,9 +1924,9 @@ $(LIBSMBCLIENT_SHARED_TARGET): $(LIBSMBCLIENT_SHARED_TARGET_SONAME)
@rm -f $@
@ln -s `basename $(LIBSMBCLIENT_SHARED_TARGET_SONAME)` $@
-$(LIBSMBCLIENT_STATIC_TARGET): $(BINARY_PREREQS) $(LIBSMBCLIENT_OBJ0)
+$(LIBSMBCLIENT_STATIC_TARGET): $(BINARY_PREREQS) $(LIBSMBCLIENT_OBJ1)
@echo Linking non-shared library $@
- @-$(AR) -rc $@ $(LIBSMBCLIENT_OBJ0)
+ @-$(AR) -rc $@ $(LIBSMBCLIENT_OBJ1)
libsmbclient: $(LIBSMBCLIENT)
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 114f775086..be26a92ca9 100644
--- a/source3/libsmb/libsmb_context.c
+++ b/source3/libsmb/libsmb_context.c
@@ -636,7 +636,7 @@ void
smbc_set_credentials(char *workgroup,
char *user,
char *password,
- bool use_kerberos,
+ smbc_bool use_kerberos,
char *signing_state)
{