summaryrefslogtreecommitdiff
path: root/source3/printing/print_cups.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-10-11 15:36:13 -0700
committerJeremy Allison <jra@samba.org>2007-10-11 15:36:13 -0700
commitcb5436bcc3b55e0c221fb6b3fa3133f149a64384 (patch)
treeb9dfa7884d428eacacff1484fbe9499f62add189 /source3/printing/print_cups.c
parent58a0a60bd11f5d422c7e39497dc6cdb59e91c9af (diff)
downloadsamba-cb5436bcc3b55e0c221fb6b3fa3133f149a64384.tar.gz
samba-cb5436bcc3b55e0c221fb6b3fa3133f149a64384.tar.bz2
samba-cb5436bcc3b55e0c221fb6b3fa3133f149a64384.zip
Add const to the get_peer_addr() and get_socket_addr()
calls. Use the IPv6 varient for get_peer_addr(). Jeremy. (This used to be commit baf1f52e34ae2465a7a34be1065da29ed97e7bea)
Diffstat (limited to 'source3/printing/print_cups.c')
-rw-r--r--source3/printing/print_cups.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/printing/print_cups.c b/source3/printing/print_cups.c
index 8f1f06e7ef..d95b08c3c6 100644
--- a/source3/printing/print_cups.c
+++ b/source3/printing/print_cups.c
@@ -563,7 +563,7 @@ static int cups_job_submit(int snum, struct printjob *pjob)
*response = NULL; /* IPP Response */
cups_lang_t *language = NULL; /* Default language */
char uri[HTTP_MAX_URI]; /* printer-uri attribute */
- char *clientname = NULL; /* hostname of client for job-originating-host attribute */
+ const char *clientname = NULL; /* hostname of client for job-originating-host attribute */
pstring new_jobname;
int num_options = 0;
cups_option_t *options = NULL;