WARNSify.

This commit is contained in:
Ruslan Ermilov 2001-09-26 11:34:14 +00:00
parent 1b00c916a1
commit 43e09ab2db
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=83962
2 changed files with 4 additions and 4 deletions

View File

@ -2,5 +2,6 @@
# $FreeBSD$
PROG= cat
WARNS?= 2
.include <bsd.prog.mk>

View File

@ -77,7 +77,7 @@ static void cook_cat __P((FILE *));
static void raw_cat __P((int));
#ifndef NO_UDOM_SUPPORT
static int udom_open __P((const char *path, int flags, int modes));
static int udom_open __P((const char *path, int flags));
#endif
int
@ -148,7 +148,7 @@ scanfiles(argv, cooked)
fd = open(path, O_RDONLY);
#ifndef NO_UDOM_SUPPORT
if (fd < 0 && errno == EOPNOTSUPP)
fd = udom_open(path, O_RDONLY, 0);
fd = udom_open(path, O_RDONLY);
#endif
}
if (fd < 0) {
@ -272,10 +272,9 @@ raw_cat(rfd)
#ifndef NO_UDOM_SUPPORT
static int
udom_open(path, flags, modes)
udom_open(path, flags)
const char *path;
int flags;
int modes;
{
struct sockaddr_un sou;
int fd;