lukem
9c1945664c
Remove the \n and tabs from the __COPYRIGHT() strings.
...
Tweak to use a consistent format.
2008-07-21 13:36:57 +00:00
christos
8eef858ae2
patch from Dennis den Brok for foomatic
2008-05-07 17:44:44 +00:00
lukem
57d60ef891
Use mkstemp(3) (in a hokey manner) instead of mktemp(3).
...
XXX: still not 100% "safe", except that we're in a protected directory.
XXX: arguably we should keep the fds open and fdopen(3) dup()s,
XXX: but we're in a protected directory so it shouldn't matter.
2008-03-03 05:07:43 +00:00
matt
156e0dc02f
scnkey is const char [][HEIGHT], not char [][HEIGHT]
2008-02-16 07:33:25 +00:00
christos
f6a7372b60
use c99 initializers
2006-10-22 21:09:47 +00:00
mrg
4bc6feceb6
end the argument list to exec*(3) with a NULL instead of a bare '0', as
...
the latter isn't a pointer context in these varargs functions.
2006-05-11 00:22:52 +00:00
christos
fca770b32a
Appease Coverity CID 2580 [not a bug]
2006-03-17 17:06:30 +00:00
wiz
ec5cd4a9b7
New sentence, new line. Bump date for previous. Properly case PostScript.
2006-01-22 21:31:17 +00:00
christos
c681304808
Instead of dealing with port@host in many places, do it where it is needed.
...
It reduces code and complexity and at the same time allows as to use symbolic
ports instead of just numeric everywhere.
2006-01-20 17:30:00 +00:00
garbled
79363b714f
Add control file documentation for 'o' handling, and fix the
...
documentation on the DVI handling, the correct letter is 'd' not 'r'.
2006-01-20 08:51:40 +00:00
garbled
fad94e160d
Fix PR bin/30272 Lpd would create the tempfile "remotexxxxx" and send
...
that, but then fill out the control file with the "df" filename. Fix by
sending the remote file with the "df" filename, as suggested by Robert
Vargason on tech-userlevel. lpd -r now works properly with an if (input
filter)
2006-01-19 19:17:59 +00:00
garbled
2d58d3d4c7
If we set SIGCHLD to SIG_IGN then any wait()'s on the child processes will
...
return -1. This causes filters to fail because we get a value for
child_pid we weren't expecting. Set SIGCHLD to SIG_DFL instead to clear
the reapchild setting when forking the child lpd.
2006-01-18 23:17:38 +00:00
garbled
517b1ba160
Update a comment regarding control file WRT "o"
2006-01-17 19:12:17 +00:00
garbled
fae257a066
Fix PR bin/14247
...
This PR claims that MacOSX 10.1 cannot print postscript files to a NetBSD
lpd because the mac will tag the file with an "o" for postscript, which
we do not handle. Rather than simply mapping o -> f as was done in the
PR, or mapping o -> l as was done in FreeBSD, I have implemented full
support for the "o" option. If a postscript filter does not exist in the
printcap file however, it will default to "l" handling.
With this change, you can now specify a "pf" or postscript filter in your
printcap, and have it handle postscript files sent to it with "lpr -o".
The "o" format in lpd is specified in RFC1179 as being a valid format flag.
2006-01-17 19:11:12 +00:00
garbled
97f8851cc8
Address PR bin/12112
...
Lpd has the ability to start on a port other than "printer" but has no
way to connect to a remote lpd on that port. This change adds the
ability to specify port@host in the rm element of printcap(5). Tested to
work with both a standard lpd setup and one running on special ports.
2006-01-04 15:32:50 +00:00
yamt
ebd9a381a8
constify.
2005-12-02 11:33:39 +00:00
christos
04723c3ffc
- WARNS = 4
...
- factor out commonly used code.
- constify
- use warn/warnx instead of printf
2005-11-28 03:26:06 +00:00
jdolecek
a53e9b6a94
the mktemp() use here is not OK, adjust comment
2005-11-27 12:52:30 +00:00
lukem
9b668c37e7
Ensure s is initialized before testing (none of the sockets may be ready
...
so it might not be setup).
Detected with gcc -Wuninitialized.
2005-06-02 05:57:03 +00:00
lukem
7157011597
Only compile in IPv6 support if ${USE_INET6} != "no"
...
MKINET6 is for providing IPv6 infrastructure.
USE_INET6 is for compiling IPv6 support into the programs (needs MKINET6).
2005-01-10 02:58:58 +00:00
dsl
75ba9fc767
Add (unsigned char) cast to ctype functions
...
Some of this code could usefully be converted to use strtoul() and/or
some small helper functions.
2004-10-30 08:44:25 +00:00
wiz
9029210e32
Avoid printing a useless \0. From SHIMIZU Ryo in PR 26766.
2004-08-26 13:05:14 +00:00
christos
6bd1d6d4db
Replace the statfs() family of system calls with statvfs().
...
Retain binary compatibility.
2004-04-21 01:05:31 +00:00
lukem
eae82b3d06
#define _PATH_BIN_RCMD in common_source/pathnames.h rather than using
...
wacky Makefile rules to compile rcmd.c
2003-10-19 05:51:44 +00:00
itojun
686afb7f65
safer use of realloc
2003-10-16 06:22:09 +00:00
itojun
94a111ae53
safer realloc.
...
sizeof() for malloc was mistaken in socksetup().
2003-10-16 03:03:04 +00:00
itojun
67ad87844e
plug memory leak. oenbsd-pr-3425
2003-09-01 00:21:08 +00:00
agc
326b2259b7
Move UCB-licensed code from 4-clause to 3-clause licence.
...
Patches provided by Joel Baker in PR 22366, verified by myself.
2003-08-07 11:25:11 +00:00
itojun
85da88227f
use strlcpy/strlcat.
...
[fix off-by-one in displayq.c]
2003-05-17 20:46:42 +00:00
wiz
37a402fc28
IPv4/IPv6, not IPV4/IPV6.
2003-03-15 19:26:08 +00:00
wiz
990562bfef
.Nm does not need a dummy argument ("") before punctuation or
...
for correct formatting of the SYNOPSIS any longer.
2003-02-25 10:34:36 +00:00
wiz
7d667a5da9
Stanford, not Standford. From Chad Loder.
2003-01-06 12:18:02 +00:00
thorpej
2b3b2f08d6
Rather than relying on pure luck to get the log file on STDERR_FILENO,
...
explictly dup2 the log file dscriptor to STDERR_FILENO and close the
original.
2002-10-26 01:47:52 +00:00
thorpej
d2ed7ebdd1
* Use STDOUT_FILENO instead of 1.
...
* Pass the file descriptor to request_init() (libwrap) so that
it can actually do something useful later in fromhost().
2002-10-26 01:46:31 +00:00
itojun
c41e40e20e
set IPV6_V6ONLY socket option for AF_INET6 socket, to avoid
...
complicated access control issue due to IPv4 mapped address.
2002-09-24 13:31:33 +00:00
lukem
1b2d905cd0
cast "%ld", xxx.tv_sec to a long
2002-09-20 04:12:42 +00:00
mycroft
59edfd2c03
Simplify the accept() code a little -- sockaddr_storage is fine for both
...
AF_LOCAL and AF_INET{,6}.
2002-09-19 20:35:56 +00:00
mycroft
4082cae6ac
If we exit because the pid file is locked, syslog that.
2002-09-19 20:22:32 +00:00
mycroft
e1a3e519ec
select() -> poll(), nanosleep()
2002-09-19 20:08:58 +00:00
lukem
17d72c8a6b
use NETBSDSRCDIR as appropriate
2002-09-18 03:54:26 +00:00
abs
2cbe5b958f
Add back __attribute__() data for pstatus() removed by error in last commit.
...
Noted by wiz.
2002-09-04 13:49:20 +00:00
abs
8531949548
When -r is given actually pass the file through of, and also enable if.
2002-09-03 18:35:11 +00:00
wiz
a05630c34e
Minor mdoc nit.
2002-08-12 18:08:13 +00:00
itojun
166e26e413
add libwrap support for lpd (you need to pass all tests to print,
...
so you will want "+" in hosts.lpd then restrict by hosts.allow/deny).
setsockopt(SO_REUSEPORT) while i'm here.
2002-08-12 18:03:41 +00:00
grant
cc65da74ac
specify the reason when aborting with "Malformed from address",
...
suggested by Matt Green.
2002-08-11 07:04:00 +00:00
itojun
1917442aa9
die if fd_set overruns
2002-08-09 02:40:57 +00:00
jschauma
a1e7e17b3e
Fix typo pointed out by haes at shrubbery dot net in PR bin/17396
...
"filter to be use" -> "filter to be used"
2002-07-31 01:49:48 +00:00
wiz
895dc72a69
Unifdef __STDC__. Remove __P(). ANSIfy.
2002-07-14 15:27:58 +00:00
hubertf
534ff5d5e9
This fixes various little problems in the lpd source.
...
lpd.c bogus 'c' option in getopt option string
printjob.c spelling "prstatic inter" -> "printer"
finish ANSIfication
recvjob.c finish ANSIfication
Patch contributed by Brian Ginsbach <ginsbach@cray.com> in PR 17520
2002-07-09 01:12:35 +00:00
itojun
b4daa6bb72
avoid hardcoded octals. openbsd
2002-06-08 23:40:12 +00:00