diff options
author | Jeremy Allison <jra@samba.org> | 2001-01-11 18:38:55 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-01-11 18:38:55 +0000 |
commit | adb91565b5ec81ebb9e0d57b7d91fbd9da410aa3 (patch) | |
tree | 51c830ed14b44eca59f10e804bdd719f6ec320b1 /source3/libsmb | |
parent | 3ab2ea54068d7441fb8d9aed9596657758ac5000 (diff) | |
download | samba-adb91565b5ec81ebb9e0d57b7d91fbd9da410aa3.tar.gz samba-adb91565b5ec81ebb9e0d57b7d91fbd9da410aa3.tar.bz2 samba-adb91565b5ec81ebb9e0d57b7d91fbd9da410aa3.zip |
rpc_server/srv_samr.c:
smbd/reply.c:
Added fix needed for appliances. When using winbindd - a new user may
exist (from winbind) but have no home directory. Extend add user script
so it is called with a %H substitution when a user exists but their home
directory does not. Thanks to Alex Win at VA Linux for finding this one
and testing the fix.
libsmb/clidgram.c: Fixed missing return statements.
smbd/uid.c: Fixed typo in debug.
Jeremy.
(This used to be commit 7ba0a2192b89954604dd793c537b4a17c2d1ac07)
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/clidgram.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/libsmb/clidgram.c b/source3/libsmb/clidgram.c index a45cc009ac..70e97c6bb6 100644 --- a/source3/libsmb/clidgram.c +++ b/source3/libsmb/clidgram.c @@ -162,6 +162,7 @@ int cli_get_response(BOOL unique, char *mailslot, char *buf, int bufsiz) bcopy(&dgram->data[92], buf, MIN(bufsiz, (dgram->datasize - 92))); + return 0; } else return -1; @@ -218,7 +219,7 @@ int cli_get_backup_list(const char *myname, const char *send_to_name) cli_get_response(True, "\\MAILSLOT\\BROWSE", cli_backup_list, sizeof(cli_backup_list)); /* Should check the response here ... FIXME */ - + return 0; } /* @@ -234,4 +235,5 @@ int cli_get_backup_server(char *my_name, char *target, char *servername, int nam strncpy(servername, cli_backup_list, MIN(16, namesize)); + return 0; } |