1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
Description: take care of spelling issues detected by lintian
Index: lprng/man/lpd.n
===================================================================
--- lprng.orig/man/lpd.n 2025-11-01 17:17:34.568161891 +0100
+++ lprng/man/lpd.n 2025-11-01 17:17:34.564161856 +0100
@@ -411,7 +411,7 @@
.I oh
fields are only used by the specified host.
The files and information is processed in linear order,
-later entries overriding preceeding ones.
+later entries overriding preceding ones.
.PP
When processing jobs or performing spool queue specific requests,
the LPD server will check to see if there is a printcap file in the control
Index: lprng/man/lpq.n
===================================================================
--- lprng.orig/man/lpq.n 2025-11-01 17:17:34.568161891 +0100
+++ lprng/man/lpq.n 2025-11-01 17:17:34.564161856 +0100
@@ -88,7 +88,7 @@
Dump lpd related information.
.TP
.B "\-c"
-Clear Screen before output, very usefull with \-t
+Clear Screen before output, very useful with \-t
.TP
.B "\-a"
List status for all printers (see PRINTER LISTS below)
Index: lprng/man/printcap.n
===================================================================
--- lprng.orig/man/printcap.n 2025-11-01 17:17:34.568161891 +0100
+++ lprng/man/printcap.n 2025-11-01 17:17:34.568161891 +0100
@@ -410,7 +410,7 @@
spool queue log file truncated to min_log_file_size
when value is nonzero and limited exceeded.
max_servers_active D num 0
- maximum servers that LPD will allow to be active at one
+ maximum servers that LPD will allow one to be active at one
time. 0 selects the system default, which is usually
pretty small, perhaps 10. (configuration value only).
max_status_line D num 79 maximum number of characters on an LPQ status line
Index: lprng/src/common/globmatch.c
===================================================================
--- lprng.orig/src/common/globmatch.c 2025-11-01 17:17:34.568161891 +0100
+++ lprng/src/common/globmatch.c 2025-11-01 17:17:34.568161891 +0100
@@ -56,7 +56,7 @@
/* DEBUG4("globmatch: c '0x%x', pat '%c', str '%c'",
c, *pattern, *str ); */
if( c && *pattern == '-' && len > 1 ){
- /* we have preceeding, get end */
+ /* we have preceding, get end */
pattern++; --len;
while( result && c <= *pattern ){
/* DEBUG4("globmatch: range c '%c', pat '%c', str '%c'",
Index: lprng/src/common/lpd_jobs.c
===================================================================
--- lprng.orig/src/common/lpd_jobs.c 2025-11-01 17:17:34.568161891 +0100
+++ lprng/src/common/lpd_jobs.c 2025-11-01 17:17:34.568161891 +0100
@@ -244,7 +244,7 @@
Set_flag_value(subserver_info,DONE_REMOVE,1);
}
- DEBUG1("Get_subserver_pc: printable %d, held %d, move %d, done_remove %d, fowarding '%s'",
+ DEBUG1("Get_subserver_pc: printable %d, held %d, move %d, done_remove %d, forwarding '%s'",
printable, held, move,
Find_flag_value(subserver_info,DONE_REMOVE),
Find_str_value(subserver_info,FORWARDING) );
Index: lprng/CHANGES
===================================================================
--- lprng.orig/CHANGES 2025-10-25 18:51:00.011050040 +0200
+++ lprng/CHANGES 2025-11-01 18:30:17.865782393 +0100
@@ -1295,7 +1295,7 @@
can start transferring a job and then, when the whole job is
transferred, the job will be done. To make this happen you
need to put an entry in the queue to act as a place holder and
- reserve the job number for this action. When transfering an
+ reserve the job number for this action. When transferring an
IPP job, you can send it in chunks. This now allows the IPP
system to send the job header (request), set up the job status,
and then the job contents. Just to make life interesting...
Index: lprng/src/common/sendjob.c
===================================================================
--- lprng.orig/src/common/sendjob.c 2025-11-01 17:17:34.480161133 +0100
+++ lprng/src/common/sendjob.c 2025-11-01 18:30:08.321700392 +0100
@@ -518,7 +518,7 @@
/*
* send the data files content
*/
- DEBUG3("Send_data_files: transfering '%s', fd %d", openname, fd );
+ DEBUG3("Send_data_files: transferring '%s', fd %d", openname, fd );
ack = 0;
if( count == job->datafiles.count-1 && final_filter ){
status = Filter_file( transfer_timeout, fd, *sock, "UserFilter",
|