diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-24 23:32:36 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-24 23:32:36 +0000 |
commit | f99afb5dff00534df6cf8f4d9de5d274c7818eac (patch) | |
tree | 72eb7ab8b462f2adf8adc8d7ffeef3cf9c1135cc /printutils | |
parent | a2f47358eb5479d65510b0eb506d52435ca26c21 (diff) | |
download | busybox-w32-f99afb5dff00534df6cf8f4d9de5d274c7818eac.tar.gz busybox-w32-f99afb5dff00534df6cf8f4d9de5d274c7818eac.tar.bz2 busybox-w32-f99afb5dff00534df6cf8f4d9de5d274c7818eac.zip |
lpd: new applet by Vladimir Dronnikov <dronnikov AT gmail.com>
Diffstat (limited to 'printutils')
-rw-r--r-- | printutils/Config.in | 6 | ||||
-rw-r--r-- | printutils/Kbuild | 1 | ||||
-rw-r--r-- | printutils/lpr.c | 12 |
3 files changed, 16 insertions, 3 deletions
diff --git a/printutils/Config.in b/printutils/Config.in index b53b9e7fa..e5f18646c 100644 --- a/printutils/Config.in +++ b/printutils/Config.in | |||
@@ -1,5 +1,11 @@ | |||
1 | menu "print support" | 1 | menu "print support" |
2 | 2 | ||
3 | config LPD | ||
4 | bool "lpd" | ||
5 | default n | ||
6 | help | ||
7 | lpd is a print spooling daemon. | ||
8 | |||
3 | config LPR | 9 | config LPR |
4 | bool "lpr" | 10 | bool "lpr" |
5 | default n | 11 | default n |
diff --git a/printutils/Kbuild b/printutils/Kbuild index 4f97d0d15..008290ee9 100644 --- a/printutils/Kbuild +++ b/printutils/Kbuild | |||
@@ -4,5 +4,6 @@ | |||
4 | 4 | ||
5 | lib-y := | 5 | lib-y := |
6 | 6 | ||
7 | lib-$(CONFIG_LPD) += lpd.o | ||
7 | lib-$(CONFIG_LPR) += lpr.o | 8 | lib-$(CONFIG_LPR) += lpr.o |
8 | lib-$(CONFIG_LPQ) += lpr.o | 9 | lib-$(CONFIG_LPQ) += lpr.o |
diff --git a/printutils/lpr.c b/printutils/lpr.c index 86fcd9b1b..52983bfb7 100644 --- a/printutils/lpr.c +++ b/printutils/lpr.c | |||
@@ -19,6 +19,7 @@ | |||
19 | */ | 19 | */ |
20 | static void get_response_or_say_and_die(const char *errmsg) | 20 | static void get_response_or_say_and_die(const char *errmsg) |
21 | { | 21 | { |
22 | static const char newline = '\n'; | ||
22 | char buf = ' '; | 23 | char buf = ' '; |
23 | 24 | ||
24 | fflush(stdout); | 25 | fflush(stdout); |
@@ -28,8 +29,9 @@ static void get_response_or_say_and_die(const char *errmsg) | |||
28 | // request has failed | 29 | // request has failed |
29 | bb_error_msg("error while %s. Server said:", errmsg); | 30 | bb_error_msg("error while %s. Server said:", errmsg); |
30 | safe_write(STDERR_FILENO, &buf, 1); | 31 | safe_write(STDERR_FILENO, &buf, 1); |
31 | logmode = 0; /* no errors from bb_copyfd_eof() */ | 32 | logmode = 0; /* no error messages from bb_copyfd_eof() pls */ |
32 | bb_copyfd_eof(STDOUT_FILENO, STDERR_FILENO); | 33 | bb_copyfd_eof(STDOUT_FILENO, STDERR_FILENO); |
34 | safe_write(STDERR_FILENO, &newline, 1); | ||
33 | xfunc_die(); | 35 | xfunc_die(); |
34 | } | 36 | } |
35 | } | 37 | } |
@@ -190,8 +192,12 @@ int lpqr_main(int argc, char *argv[]) | |||
190 | , remote_filename | 192 | , remote_filename |
191 | ); | 193 | ); |
192 | // delete possible "\nX\n" patterns | 194 | // delete possible "\nX\n" patterns |
193 | while ((c = strchr(controlfile, '\n')) != NULL && c[1] && c[2] == '\n') | 195 | c = controlfile; |
194 | memmove(c, c+2, strlen(c+1)); /* strlen(c+1) == strlen(c+2) + 1 */ | 196 | while ((c = strchr(c, '\n')) != NULL) { |
197 | c++; | ||
198 | while (c[0] && c[1] == '\n') | ||
199 | memmove(c, c+2, strlen(c+1)); /* strlen(c+1) == strlen(c+2) + 1 */ | ||
200 | } | ||
195 | 201 | ||
196 | // send control file | 202 | // send control file |
197 | if (opts & LPR_V) | 203 | if (opts & LPR_V) |