summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-11-07 14:32:55 +0000
committerGerald Carter <jerry@samba.org>2003-11-07 14:32:55 +0000
commit178a4635245c2c433b9a510282ad5c49a2ffe804 (patch)
treea2c35bc31cf8791147ba723cb215852b5349a8b1 /source3
parent91e61843d7775c3dad6c6fafd60367d5f5967287 (diff)
downloadsamba-178a4635245c2c433b9a510282ad5c49a2ffe804.tar.gz
samba-178a4635245c2c433b9a510282ad5c49a2ffe804.tar.bz2
samba-178a4635245c2c433b9a510282ad5c49a2ffe804.zip
don't allow setting of the guest account
(This used to be commit 1e461f06ec492dc3f139165932c3518a6dd416f9)
Diffstat (limited to 'source3')
-rw-r--r--source3/passdb/pdb_guest.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/passdb/pdb_guest.c b/source3/passdb/pdb_guest.c
index e2b38b1e76..7e9c2a9e1b 100644
--- a/source3/passdb/pdb_guest.c
+++ b/source3/passdb/pdb_guest.c
@@ -110,7 +110,15 @@ static NTSTATUS guestsam_getsampwsid(struct pdb_methods *my_methods, SAM_ACCOUNT
static NTSTATUS guestsam_update_sam_account (struct pdb_methods *methods, SAM_ACCOUNT *newpwd)
{
+#if 0 /* JERRY */
return methods->parent->pdb_add_sam_account(methods->parent, newpwd);
+#else
+ /* I don't think we should allow any modification of
+ the guest account as SID will could messed up with
+ the smbpasswd backend --jerry */
+
+ return NT_STATUS_NOT_IMPLEMENTED;
+#endif
}
NTSTATUS pdb_init_guestsam(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, const char *location)