summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-11-24 18:38:15 +0000
committerGerald Carter <jerry@samba.org>2003-11-24 18:38:15 +0000
commiteae48cda0f7f1346cd66d5a581c1273880f214d4 (patch)
tree302eadeec8129ad3a4bff1a05c0b3b2a9a7e7f51 /source
parentc4ce92e80688fe7fd4b2fde2c31e94baf3e4dca0 (diff)
downloadsamba-eae48cda0f7f1346cd66d5a581c1273880f214d4.tar.gz
samba-eae48cda0f7f1346cd66d5a581c1273880f214d4.tar.xz
samba-eae48cda0f7f1346cd66d5a581c1273880f214d4.zip
patch from Matthias Hilbig for bug 467; use the dns name (or IP) as the originating client name when using CUPS
Diffstat (limited to 'source')
-rw-r--r--source/printing/print_cups.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/source/printing/print_cups.c b/source/printing/print_cups.c
index 7cf21c966e4..291028b70cf 100644
--- a/source/printing/print_cups.c
+++ b/source/printing/print_cups.c
@@ -680,7 +680,7 @@ cups_job_submit(int snum, struct printjob *pjob)
*response; /* IPP Response */
cups_lang_t *language; /* Default language */
char uri[HTTP_MAX_URI]; /* printer-uri attribute */
-
+ char *clientname; /* hostname of client for job-originating-host attribute */
DEBUG(5,("cups_job_submit(%d, %p (%d))\n", snum, pjob, pjob->sysjob));
@@ -734,9 +734,14 @@ cups_job_submit(int snum, struct printjob *pjob)
ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME, "requesting-user-name",
NULL, pjob->user);
+ clientname = client_name();
+ if (strcmp(clientname, "UNKNOWN") == 0) {
+ clientname = client_addr();
+ }
+
ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME,
"job-originating-host-name", NULL,
- get_remote_machine_name());
+ clientname);
ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME, "job-name", NULL,
pjob->jobname);