summaryrefslogtreecommitdiff
path: root/berkeley
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2018-10-18 14:25:09 -0400
committerMichael R Sweet <michael.r.sweet@gmail.com>2018-10-18 14:25:09 -0400
commitfb863569eb4f51ae62a066dc8049d3ffc0efb0bb (patch)
tree8a209d6684fc82600cbc303ffceedff8fb1d7b58 /berkeley
parent941a5490cfa02953d2adcacb1838fd3d3e21976b (diff)
downloadcups-fb863569eb4f51ae62a066dc8049d3ffc0efb0bb.tar.gz
Move debug printfs to internal usage only.
Also, old MD5 code is internal-only.
Diffstat (limited to 'berkeley')
-rw-r--r--berkeley/Dependencies35
-rw-r--r--berkeley/lpc.c4
-rw-r--r--berkeley/lpq.c3
3 files changed, 17 insertions, 25 deletions
diff --git a/berkeley/Dependencies b/berkeley/Dependencies
index b115953ba..acb7bd1fd 100644
--- a/berkeley/Dependencies
+++ b/berkeley/Dependencies
@@ -1,25 +1,24 @@
lpc.o: lpc.c ../cups/cups-private.h ../cups/string-private.h ../config.h \
- ../cups/debug-private.h ../cups/versioning.h ../cups/array-private.h \
- ../cups/array.h ../cups/ipp-private.h ../cups/cups.h ../cups/file.h \
- ../cups/ipp.h ../cups/http.h ../cups/language.h ../cups/pwg.h \
- ../cups/http-private.h ../cups/language-private.h ../cups/transcode.h \
- ../cups/pwg-private.h ../cups/thread-private.h
+ ../cups/versioning.h ../cups/array-private.h ../cups/array.h \
+ ../cups/ipp-private.h ../cups/cups.h ../cups/file.h ../cups/ipp.h \
+ ../cups/http.h ../cups/language.h ../cups/pwg.h ../cups/http-private.h \
+ ../cups/language-private.h ../cups/transcode.h ../cups/pwg-private.h \
+ ../cups/thread-private.h
lpq.o: lpq.c ../cups/cups-private.h ../cups/string-private.h ../config.h \
- ../cups/debug-private.h ../cups/versioning.h ../cups/array-private.h \
- ../cups/array.h ../cups/ipp-private.h ../cups/cups.h ../cups/file.h \
- ../cups/ipp.h ../cups/http.h ../cups/language.h ../cups/pwg.h \
- ../cups/http-private.h ../cups/language-private.h ../cups/transcode.h \
- ../cups/pwg-private.h ../cups/thread-private.h
+ ../cups/versioning.h ../cups/array-private.h ../cups/array.h \
+ ../cups/ipp-private.h ../cups/cups.h ../cups/file.h ../cups/ipp.h \
+ ../cups/http.h ../cups/language.h ../cups/pwg.h ../cups/http-private.h \
+ ../cups/language-private.h ../cups/transcode.h ../cups/pwg-private.h \
+ ../cups/thread-private.h
lpr.o: lpr.c ../cups/cups-private.h ../cups/string-private.h ../config.h \
- ../cups/debug-private.h ../cups/versioning.h ../cups/array-private.h \
+ ../cups/versioning.h ../cups/array-private.h ../cups/array.h \
+ ../cups/ipp-private.h ../cups/cups.h ../cups/file.h ../cups/ipp.h \
+ ../cups/http.h ../cups/language.h ../cups/pwg.h ../cups/http-private.h \
+ ../cups/language-private.h ../cups/transcode.h ../cups/pwg-private.h \
+ ../cups/thread-private.h
+lprm.o: lprm.c ../cups/cups-private.h ../cups/string-private.h \
+ ../config.h ../cups/versioning.h ../cups/array-private.h \
../cups/array.h ../cups/ipp-private.h ../cups/cups.h ../cups/file.h \
../cups/ipp.h ../cups/http.h ../cups/language.h ../cups/pwg.h \
../cups/http-private.h ../cups/language-private.h ../cups/transcode.h \
../cups/pwg-private.h ../cups/thread-private.h
-lprm.o: lprm.c ../cups/cups-private.h ../cups/string-private.h \
- ../config.h ../cups/debug-private.h ../cups/versioning.h \
- ../cups/array-private.h ../cups/array.h ../cups/ipp-private.h \
- ../cups/cups.h ../cups/file.h ../cups/ipp.h ../cups/http.h \
- ../cups/language.h ../cups/pwg.h ../cups/http-private.h \
- ../cups/language-private.h ../cups/transcode.h ../cups/pwg-private.h \
- ../cups/thread-private.h
diff --git a/berkeley/lpc.c b/berkeley/lpc.c
index bfa3c1c40..7ab43ea12 100644
--- a/berkeley/lpc.c
+++ b/berkeley/lpc.c
@@ -230,8 +230,6 @@ show_status(http_t *http, /* I - HTTP connection to server */
};
- DEBUG_printf(("show_status(http=%p, dests=\"%s\")\n", http, dests));
-
if (http == NULL)
return;
@@ -255,8 +253,6 @@ show_status(http_t *http, /* I - HTTP connection to server */
if ((response = cupsDoRequest(http, request, "/")) != NULL)
{
- DEBUG_puts("show_status: request succeeded...");
-
/*
* Loop through the printers returned in the list and display
* their status...
diff --git a/berkeley/lpq.c b/berkeley/lpq.c
index 47220f5d7..7392d59ca 100644
--- a/berkeley/lpq.c
+++ b/berkeley/lpq.c
@@ -348,9 +348,6 @@ show_jobs(const char *command, /* I - Command name */
};
- DEBUG_printf(("show_jobs(http=%p, dest=%p, user=%p, id=%d, longstatus%d)\n",
- http, dest, user, id, longstatus));
-
if (http == NULL)
return (0);