diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-12-15 11:03:29 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-12-15 11:03:29 +0100 |
commit | 06c1c338e3fcaf6460f4e462c7f881ce2abc9ac7 (patch) | |
tree | aa7ea83f7fdaafaef151d5ef062416aedeb1c3cb /source3 | |
parent | e412b8bfcce46720b913d42ac7f56d4e024162f0 (diff) | |
download | samba-06c1c338e3fcaf6460f4e462c7f881ce2abc9ac7.tar.gz samba-06c1c338e3fcaf6460f4e462c7f881ce2abc9ac7.tar.xz samba-06c1c338e3fcaf6460f4e462c7f881ce2abc9ac7.zip |
s3:rpc_server/spoolss: remove reload_services check from delete_printer_hook()
As the spoolss code can run embedded or external relative to the
smbd file server process, it's very tricky to verify if a share
is still in use.
Checking the result of the "deleteprinter command" command should
be enough to check for success. We should not return WERR_ACCESS_DENIED
if the share is still in use, by the current client, as the primary
printer definition is already deleted.
metze
Diffstat (limited to 'source3')
-rw-r--r-- | source3/rpc_server/spoolss/srv_spoolss_nt.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/source3/rpc_server/spoolss/srv_spoolss_nt.c b/source3/rpc_server/spoolss/srv_spoolss_nt.c index 1a9111c8a55..491d96566a8 100644 --- a/source3/rpc_server/spoolss/srv_spoolss_nt.c +++ b/source3/rpc_server/spoolss/srv_spoolss_nt.c @@ -417,14 +417,6 @@ static WERROR delete_printer_hook(TALLOC_CTX *ctx, struct security_token *token, if (ret != 0) return WERR_BADFID; /* What to return here? */ - /* go ahead and re-read the services immediately */ - become_root(); - reload_services(msg_ctx, -1, false); - unbecome_root(); - - if ( lp_servicenumber( sharename ) >= 0 ) - return WERR_ACCESS_DENIED; - return WERR_OK; } |