diff options
author | Garming Sam <garming@catalyst.net.nz> | 2014-02-04 15:09:06 +1300 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-02-07 16:19:14 -0800 |
commit | b8eedddc2faa19dce649dd220c42f5aa65fbbc92 (patch) | |
tree | c135d90c456fec633b44e0fef89adc723ef3c12d /source3/printing | |
parent | 3fda1fa96f6d8a36bad2d18b4c4e7fc4a679466f (diff) | |
download | samba-b8eedddc2faa19dce649dd220c42f5aa65fbbc92.tar.gz |
param: rename lp function and variable from "lpqcommand" to "lpq_command"
Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/printing.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/printing/printing.c b/source3/printing/printing.c index 62c95f5cb35..7253eba2608 100644 --- a/source3/printing/printing.c +++ b/source3/printing/printing.c @@ -1665,7 +1665,7 @@ static void print_queue_update(struct messaging_context *msg_ctx, /* don't strip out characters like '$' from the printername */ lpqcommand = talloc_string_sub2(ctx, - lp_lpqcommand(talloc_tos(), snum), + lp_lpq_command(talloc_tos(), snum), "%p", lp_printername(talloc_tos(), snum), false, false, false); @@ -2968,7 +2968,7 @@ NTSTATUS print_job_end(struct messaging_context *msg_ctx, int snum, /* don't strip out characters like '$' from the printername */ lpq_cmd = talloc_string_sub2(tmp_ctx, - lp_lpqcommand(talloc_tos(), snum), + lp_lpq_command(talloc_tos(), snum), "%p", lp_printername(talloc_tos(), snum), false, false, false); |