diff options
author | Eric Faurot <eric@cvs.openbsd.org> | 2018-04-27 16:14:38 +0000 |
---|---|---|
committer | Eric Faurot <eric@cvs.openbsd.org> | 2018-04-27 16:14:38 +0000 |
commit | aaf4406a8635f25a79e83548e08bcb6ff4225ae7 (patch) | |
tree | 185d34469b49f68b22292d0dee7cf2cfc3a9dc04 /usr.sbin | |
parent | 2e06c4eb87215082b05738a88de8895cbfff9633 (diff) |
Import lpd, a re-implementation of the lpr daemon following the latest
OpenBSD coding practices (fork+exec/privsep/pledge/...). It is only
intended to replace the lpd(8) daemon for the moment, not the lpr(1),
lprm(1), lpq(1) and lpc(8) commands.
This is a work in progress. The server part should be fairly functionnal,
but the printer part is not complete: remote printers should work, for
local printers it depends on the setup. Anyway, at this point it's better
in the tree than rotting on my disk.
ok deraadt@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/lpd/engine.c | 2 | ||||
-rw-r--r-- | usr.sbin/lpd/frontend.c | 2 | ||||
-rw-r--r-- | usr.sbin/lpd/logmsg.c | 2 | ||||
-rw-r--r-- | usr.sbin/lpd/lpd.h | 2 | ||||
-rw-r--r-- | usr.sbin/lpd/resolver.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/lpd/engine.c b/usr.sbin/lpd/engine.c index b71f63a7163..3fbb53dc510 100644 --- a/usr.sbin/lpd/engine.c +++ b/usr.sbin/lpd/engine.c @@ -1,4 +1,4 @@ -/* $OpenBSD: engine.c,v 1.1.1.1 2018/04/27 16:14:35 eric Exp $ */ +/* $OpenBSD: engine.c,v 1.1 2018/04/27 16:14:35 eric Exp $ */ /* * Copyright (c) 2017 Eric Faurot <eric@openbsd.org> diff --git a/usr.sbin/lpd/frontend.c b/usr.sbin/lpd/frontend.c index 9ea42183c49..b92bba1f0db 100644 --- a/usr.sbin/lpd/frontend.c +++ b/usr.sbin/lpd/frontend.c @@ -1,4 +1,4 @@ -/* $OpenBSD: frontend.c,v 1.1.1.1 2018/04/27 16:14:35 eric Exp $ */ +/* $OpenBSD: frontend.c,v 1.1 2018/04/27 16:14:35 eric Exp $ */ /* * Copyright (c) 2017 Eric Faurot <eric@openbsd.org> diff --git a/usr.sbin/lpd/logmsg.c b/usr.sbin/lpd/logmsg.c index 8947caa24c8..b928e468084 100644 --- a/usr.sbin/lpd/logmsg.c +++ b/usr.sbin/lpd/logmsg.c @@ -1,4 +1,4 @@ -/* $OpenBSD: logmsg.c,v 1.1.1.1 2018/04/27 16:14:36 eric Exp $ */ +/* $OpenBSD: logmsg.c,v 1.1 2018/04/27 16:14:36 eric Exp $ */ /* * Copyright (c) 2017 Eric Faurot <eric@openbsd.org> diff --git a/usr.sbin/lpd/lpd.h b/usr.sbin/lpd/lpd.h index 1ed1484a4b8..5a07b379824 100644 --- a/usr.sbin/lpd/lpd.h +++ b/usr.sbin/lpd/lpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: lpd.h,v 1.1.1.1 2018/04/27 16:14:37 eric Exp $ */ +/* $OpenBSD: lpd.h,v 1.1 2018/04/27 16:14:37 eric Exp $ */ /* * Copyright (c) 2017 Eric Faurot <eric@openbsd.org> diff --git a/usr.sbin/lpd/resolver.c b/usr.sbin/lpd/resolver.c index 8725b06d848..41afad4a07e 100644 --- a/usr.sbin/lpd/resolver.c +++ b/usr.sbin/lpd/resolver.c @@ -1,4 +1,4 @@ -/* $OpenBSD: resolver.c,v 1.1.1.1 2018/04/27 16:14:37 eric Exp $ */ +/* $OpenBSD: resolver.c,v 1.1 2018/04/27 16:14:37 eric Exp $ */ /* * Copyright (c) 2017 Eric Faurot <eric@openbsd.org> |