diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-02-17 00:07:53 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-02-17 00:07:53 +0000 |
commit | eb855dfe8eec4b73524548e58be7f28821c8b155 (patch) | |
tree | 9faa94692623f9f75cf209c4b95e1a3dea9f9c38 /sbin | |
parent | 1cd87ff3304cf463f1e4bed2b2d76ecd2db26aa2 (diff) |
chflags(2) take a u_int
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/restore/dirs.c | 6 | ||||
-rw-r--r-- | sbin/restore/tape.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sbin/restore/dirs.c b/sbin/restore/dirs.c index c24f25ebd46..7f6eec0ac6c 100644 --- a/sbin/restore/dirs.c +++ b/sbin/restore/dirs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dirs.c,v 1.14 1997/07/05 20:51:21 millert Exp $ */ +/* $OpenBSD: dirs.c,v 1.15 1998/02/17 00:07:51 millert Exp $ */ /* $NetBSD: dirs.c,v 1.26 1997/07/01 05:37:49 lukem Exp $ */ /* @@ -43,7 +43,7 @@ #if 0 static char sccsid[] = "@(#)dirs.c 8.5 (Berkeley) 8/31/94"; #else -static char rcsid[] = "$OpenBSD: dirs.c,v 1.14 1997/07/05 20:51:21 millert Exp $"; +static char rcsid[] = "$OpenBSD: dirs.c,v 1.15 1998/02/17 00:07:51 millert Exp $"; #endif #endif /* not lint */ @@ -91,7 +91,7 @@ struct modeinfo { mode_t mode; uid_t uid; gid_t gid; - int flags; + u_int flags; }; /* diff --git a/sbin/restore/tape.c b/sbin/restore/tape.c index 88c2d2199f4..1ec09bd7de2 100644 --- a/sbin/restore/tape.c +++ b/sbin/restore/tape.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tape.c,v 1.12 1998/02/10 20:20:03 deraadt Exp $ */ +/* $OpenBSD: tape.c,v 1.13 1998/02/17 00:07:52 millert Exp $ */ /* $NetBSD: tape.c,v 1.26 1997/04/15 07:12:25 lukem Exp $ */ /* @@ -493,7 +493,7 @@ int extractfile(name) char *name; { - int flags; + u_int flags; mode_t mode; struct timeval timep[2]; struct entry *ep; |