1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-18 00:23:50 +03:00

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 7ba0a2192b)
This commit is contained in:
Jeremy Allison
2001-01-11 18:38:55 +00:00
parent 3ab2ea5406
commit adb91565b5
5 changed files with 463 additions and 421 deletions

View File

@@ -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;
}