diff options
author | Luke Leighton <lkcl@samba.org> | 1999-12-12 21:00:35 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-12-12 21:00:35 +0000 |
commit | f6276724bafdb6145c0c7b565172d80cb04516ea (patch) | |
tree | dc898b2020b32c12b02724fb7209bde351afe47e /source3/include | |
parent | 4f8a24522c683761c6f2ee23dba56f6c7913377b (diff) | |
download | samba-f6276724bafdb6145c0c7b565172d80cb04516ea.tar.gz samba-f6276724bafdb6145c0c7b565172d80cb04516ea.tar.bz2 samba-f6276724bafdb6145c0c7b565172d80cb04516ea.zip |
changed function name of get_home_dir() to get_unixhome_dir(), to stop
clash with gnu readline library.
fixed issue with [homes] service not being there - call lp_add_home()
just before starting the msrpc processing.
(This used to be commit 054195df9b6187c663ede5cf4489499abbdc29fc)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 4ac79a02fd..3c37085160 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -437,7 +437,7 @@ char *ufc_crypt(char *key,char *salt); struct passwd *hashed_getpwnam(const char *name); char *uidtoname(uid_t uid); -char *get_home_dir(char *user); +char *get_unixhome_dir(char *user); BOOL map_username(char *user); const struct passwd *Get_Pwnam(char *user,BOOL allow_change); BOOL user_ok(char *user,int snum); @@ -2022,6 +2022,10 @@ BOOL cli_net_sam_sync( const char* srv_name, const char* myhostname, SAM_DELTA_HDR *hdr_deltas, SAM_DELTA_CTR *deltas); +/*The following definitions come from rpc_client/cli_netlogon_sync.c */ + +BOOL synchronise_passdb(void); + /*The following definitions come from rpc_client/cli_pipe.c */ BOOL create_rpc_bind_resp(struct pwd_info *pwd, @@ -4566,6 +4570,10 @@ BOOL reload_services(BOOL test); void msrpc_service_init(void); BOOL reload_services(BOOL test); +/*The following definitions come from utils/smbpasswd.c */ + +int main(int argc, char **argv); + /*The following definitions come from web/cgi.c */ void cgi_load_variables(FILE *f1); |