mirror of
https://github.com/samba-team/samba.git
synced 2025-02-24 13:57:43 +03:00
r11597: revert a commit by mistake
(This used to be commit 09e6f494b490127ace1a9d1077c2757d813abc55)
This commit is contained in:
parent
1c07c25322
commit
56415ccacb
@ -538,6 +538,8 @@ static WERROR spoolss_GetPrinterData(struct dcesrv_call_state *dce_call, TALLOC_
|
||||
|
||||
DCESRV_PULL_HANDLE_WERR(h, r->in.handle, DCESRV_HANDLE_ANY);
|
||||
handle = talloc_get_type(h->data, struct ntptr_GenericHandle);
|
||||
if (!handle)
|
||||
return WERR_BADFID;
|
||||
|
||||
switch (handle->type) {
|
||||
case NTPTR_HANDLE_SERVER:
|
||||
@ -609,6 +611,8 @@ static WERROR spoolss_AddForm(struct dcesrv_call_state *dce_call, TALLOC_CTX *me
|
||||
|
||||
DCESRV_PULL_HANDLE_WERR(h, r->in.handle, DCESRV_HANDLE_ANY);
|
||||
handle = talloc_get_type(h->data, struct ntptr_GenericHandle);
|
||||
if (!handle)
|
||||
return WERR_BADFID;
|
||||
|
||||
switch (handle->type) {
|
||||
case NTPTR_HANDLE_SERVER:
|
||||
@ -639,6 +643,8 @@ static WERROR spoolss_DeleteForm(struct dcesrv_call_state *dce_call, TALLOC_CTX
|
||||
|
||||
DCESRV_PULL_HANDLE_WERR(h, r->in.handle, DCESRV_HANDLE_ANY);
|
||||
handle = talloc_get_type(h->data, struct ntptr_GenericHandle);
|
||||
if (!handle)
|
||||
return WERR_BADFID;
|
||||
|
||||
switch (handle->type) {
|
||||
case NTPTR_HANDLE_SERVER:
|
||||
@ -669,6 +675,8 @@ static WERROR spoolss_GetForm(struct dcesrv_call_state *dce_call, TALLOC_CTX *me
|
||||
|
||||
DCESRV_PULL_HANDLE_WERR(h, r->in.handle, DCESRV_HANDLE_ANY);
|
||||
handle = talloc_get_type(h->data, struct ntptr_GenericHandle);
|
||||
if (!handle)
|
||||
return WERR_BADFID;
|
||||
|
||||
switch (handle->type) {
|
||||
case NTPTR_HANDLE_SERVER:
|
||||
@ -702,6 +710,8 @@ static WERROR spoolss_SetForm(struct dcesrv_call_state *dce_call, TALLOC_CTX *me
|
||||
|
||||
DCESRV_PULL_HANDLE_WERR(h, r->in.handle, DCESRV_HANDLE_ANY);
|
||||
handle = talloc_get_type(h->data, struct ntptr_GenericHandle);
|
||||
if (!handle)
|
||||
return WERR_BADFID;
|
||||
|
||||
switch (handle->type) {
|
||||
case NTPTR_HANDLE_SERVER:
|
||||
@ -732,6 +742,8 @@ static WERROR spoolss_EnumForms(struct dcesrv_call_state *dce_call, TALLOC_CTX *
|
||||
|
||||
DCESRV_PULL_HANDLE_WERR(h, r->in.handle, DCESRV_HANDLE_ANY);
|
||||
handle = talloc_get_type(h->data, struct ntptr_GenericHandle);
|
||||
if (!handle)
|
||||
return WERR_BADFID;
|
||||
|
||||
switch (handle->type) {
|
||||
case NTPTR_HANDLE_SERVER:
|
||||
|
Loading…
x
Reference in New Issue
Block a user