diff options
author | wollman <wollman@FreeBSD.org> | 1998-09-11 18:49:33 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1998-09-11 18:49:33 +0000 |
commit | aac5469d30c451307f3e3a8b2356165d289e444a (patch) | |
tree | 1b213289729f05f466126dd9e293923a84a7f250 /usr.sbin/lpr/lpc/cmds.c | |
parent | 37d2c8c237e33bd1be4f6e346e9d1e928b9bfd19 (diff) | |
download | FreeBSD-src-aac5469d30c451307f3e3a8b2356165d289e444a.zip FreeBSD-src-aac5469d30c451307f3e3a8b2356165d289e444a.tar.gz |
Fix additional warnings. Remove -Werror, since some people have complained
about it.
PR: 7886
Submitted by: Stefan Eggers <seggers@semyam.dinoco.de> (partially)
Diffstat (limited to 'usr.sbin/lpr/lpc/cmds.c')
-rw-r--r-- | usr.sbin/lpr/lpc/cmds.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/lpr/lpc/cmds.c b/usr.sbin/lpr/lpc/cmds.c index 650ab00..4aef15d 100644 --- a/usr.sbin/lpr/lpc/cmds.c +++ b/usr.sbin/lpr/lpc/cmds.c @@ -43,7 +43,7 @@ static const char copyright[] = static char sccsid[] = "@(#)cmds.c 8.2 (Berkeley) 4/28/95"; */ static const char rcsid[] = - "$Id$"; + "$Id: cmds.c,v 1.11 1997/12/02 20:45:37 wollman Exp $"; #endif /* not lint */ /* @@ -70,8 +70,6 @@ static const char rcsid[] = #include "extern.h" #include "pathnames.h" -extern uid_t uid, euid; - static void abortpr __P((struct printer *, int)); static int doarg __P((char *)); static int doselect __P((struct dirent *)); |