summaryrefslogtreecommitdiff
path: root/source3/smbd/uid.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2001-01-11 18:38:55 +0000
committerJeremy Allison <jra@samba.org>2001-01-11 18:38:55 +0000
commitadb91565b5ec81ebb9e0d57b7d91fbd9da410aa3 (patch)
tree51c830ed14b44eca59f10e804bdd719f6ec320b1 /source3/smbd/uid.c
parent3ab2ea54068d7441fb8d9aed9596657758ac5000 (diff)
downloadsamba-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/smbd/uid.c')
-rw-r--r--source3/smbd/uid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/uid.c b/source3/smbd/uid.c
index 25cadb51b0..1d2b8f4e9f 100644
--- a/source3/smbd/uid.c
+++ b/source3/smbd/uid.c
@@ -488,7 +488,7 @@ BOOL sid_to_gid(DOM_SID *psid, gid_t *pgid, enum SID_NAME_USE *sidtype)
*/
if ((name_type != SID_NAME_DOM_GRP) && (name_type != SID_NAME_ALIAS) && (name_type != SID_NAME_WKN_GRP)) {
- DEBUG(10,("sid_to_gid: winbind lookup succeeded but SID is not a know group (%u)\n",
+ DEBUG(10,("sid_to_gid: winbind lookup succeeded but SID is not a known group (%u)\n",
(unsigned int)name_type ));
return local_sid_to_gid(pgid, psid, sidtype);