diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-24 19:22:25 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-24 19:22:25 +0000 |
commit | 8f8a420f12773200783ada1b48a3c019208ee014 (patch) | |
tree | 634c38631949fdb15fefb22082805c9b9886d682 | |
parent | b78d1c045facbebd21ea94072b6905e40e0147cf (diff) | |
download | busybox-w32-8f8a420f12773200783ada1b48a3c019208ee014.tar.gz busybox-w32-8f8a420f12773200783ada1b48a3c019208ee014.tar.bz2 busybox-w32-8f8a420f12773200783ada1b48a3c019208ee014.zip |
lpr: fixing vda's thinko
-rw-r--r-- | printutils/lpr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/printutils/lpr.c b/printutils/lpr.c index ea0e21091..e8da28b2b 100644 --- a/printutils/lpr.c +++ b/printutils/lpr.c | |||
@@ -201,7 +201,7 @@ int lpqr_main(int argc, char *argv[]) | |||
201 | * an indication that the file being sent is complete. | 201 | * an indication that the file being sent is complete. |
202 | * A second level of acknowledgement processing | 202 | * A second level of acknowledgement processing |
203 | * must occur at this point." */ | 203 | * must occur at this point." */ |
204 | printf("\x2" "%u %s\n" "c%s" "%c", | 204 | printf("\x2" "%u c%s\n" "%s" "%c", |
205 | (unsigned)strlen(controlfile), | 205 | (unsigned)strlen(controlfile), |
206 | remote_filename, controlfile, '\0'); | 206 | remote_filename, controlfile, '\0'); |
207 | get_response_or_say_and_die("sending control file"); | 207 | get_response_or_say_and_die("sending control file"); |