summaryrefslogtreecommitdiff
path: root/source3/printing
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2021-12-01 13:03:03 -0800
committerRalph Boehme <slow@samba.org>2021-12-09 18:06:35 +0000
commit098d63a219c3db0406fecca853ea1798cf50cb1b (patch)
treec026474f73694eeb1c93a38f7daeb8b4e71ee028 /source3/printing
parent42985702df0485208fc46117ea73622f1a9e4a26 (diff)
downloadsamba-098d63a219c3db0406fecca853ea1798cf50cb1b.tar.gz
s3: smbd: Remove 'bool has_wild' parameter from unlink_internals().
Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
Diffstat (limited to 'source3/printing')
-rw-r--r--source3/printing/nt_printing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c
index b172ed92c6e..a47afda4a84 100644
--- a/source3/printing/nt_printing.c
+++ b/source3/printing/nt_printing.c
@@ -2042,7 +2042,7 @@ static NTSTATUS driver_unlink_internals(connection_struct *conn,
goto err_out;
}
- status = unlink_internals(conn, NULL, 0, smb_fname, false);
+ status = unlink_internals(conn, NULL, 0, smb_fname);
err_out:
talloc_free(tmp_ctx);
return status;