diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-02-04 11:12:25 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2004-02-04 11:12:25 +0000 |
commit | ccaf0e7fb11ea5faa752bd6dfddfa3d9fe62b92d (patch) | |
tree | 2b742c0e28bcac57eef2a8e4d3a710112af9c785 /source3 | |
parent | 39f8afa866b6a29b3fd96c7bbadc1456ab40c548 (diff) | |
download | samba-ccaf0e7fb11ea5faa752bd6dfddfa3d9fe62b92d.tar.gz samba-ccaf0e7fb11ea5faa752bd6dfddfa3d9fe62b92d.tar.bz2 samba-ccaf0e7fb11ea5faa752bd6dfddfa3d9fe62b92d.zip |
This should be the correct fix for the lack of a prototype for
remote_password_change().
Sorry for the original bug.
Andrew Bartlett
(This used to be commit 955436a6f6d7c2f580b2c4e1edbb7ee2fe5df858)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/Makefile.in | 2 | ||||
-rw-r--r-- | source3/utils/smbpasswd.c | 6 | ||||
-rw-r--r-- | source3/web/swat.c | 6 |
3 files changed, 1 insertions, 13 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index d838f55b52..71ab6b4b2e 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -589,7 +589,7 @@ PROTO_OBJ = $(SMBD_OBJ_MAIN) \ $(LIB_SMBD_OBJ) $(SAM_OBJ) $(REGISTRY_OBJ) $(POPT_LIB_OBJ) \ $(RPC_LSA_OBJ) $(RPC_NETLOG_OBJ) $(RPC_SAMR_OBJ) $(RPC_REG_OBJ) $(RPC_LSA_DS_OBJ) \ $(RPC_SVC_OBJ) $(RPC_WKS_OBJ) $(RPC_DFS_OBJ) $(RPC_SPOOLSS_OBJ) \ - $(RPC_ECHO_OBJ) $(SMBLDAP_OBJ) $(IDMAP_OBJ) libsmb/spnego.o + $(RPC_ECHO_OBJ) $(SMBLDAP_OBJ) $(IDMAP_OBJ) libsmb/spnego.o libsmb/passchange.o WINBIND_WINS_NSS_OBJ = nsswitch/wins.o $(PARAM_OBJ) $(UBIQX_OBJ) \ $(LIBSMB_OBJ) $(LIB_OBJ) $(NSSWINS_OBJ) $(KRBCLIENT_OBJ) diff --git a/source3/utils/smbpasswd.c b/source3/utils/smbpasswd.c index 771497f1de..b43b29d0ad 100644 --- a/source3/utils/smbpasswd.c +++ b/source3/utils/smbpasswd.c @@ -37,12 +37,6 @@ static const char *remote_machine = NULL; static fstring ldap_secret; -/* FUNCTION DECLARATIONS */ - - BOOL remote_password_change(const char *rmachine, const char *username, - const char *old_pw, const char *new_pw, - char *err_str, size_t err_str_len); - /********************************************************* Print command usage on stderr and die. diff --git a/source3/web/swat.c b/source3/web/swat.c index 80160e31f4..a67a2f8db0 100644 --- a/source3/web/swat.c +++ b/source3/web/swat.c @@ -51,12 +51,6 @@ static int iNumNonAutoPrintServices = 0; #define ENABLE_USER_FLAG "enable_user_flag" #define RHOST "remote_host" -/* FUNCTION DECLARATIONS */ - - BOOL remote_password_change(const char *rmachine, const char *username, - const char *old_pw, const char *new_pw, - char *err_str, size_t err_str_len); - /**************************************************************************** ****************************************************************************/ |