diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-07-01 18:25:49 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-07-01 18:25:49 +0000 |
commit | 0405676ceb04ce85a6dbf0cb4187ecca4cdd1656 (patch) | |
tree | 8b6df9b1da46017b7464c87fd92efb9f219101d4 /usr.sbin/mtree/spec.c | |
parent | 0c922cc2c28276924487216037e2951d00ac584f (diff) |
setmode(3) returns void *, not mode_t *. ok millert@
Diffstat (limited to 'usr.sbin/mtree/spec.c')
-rw-r--r-- | usr.sbin/mtree/spec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/mtree/spec.c b/usr.sbin/mtree/spec.c index f6094c9ca2e..840316281c4 100644 --- a/usr.sbin/mtree/spec.c +++ b/usr.sbin/mtree/spec.c @@ -1,5 +1,5 @@ /* $NetBSD: spec.c,v 1.6 1995/03/07 21:12:12 cgd Exp $ */ -/* $OpenBSD: spec.c,v 1.19 2004/05/02 17:55:53 millert Exp $ */ +/* $OpenBSD: spec.c,v 1.20 2004/07/01 18:25:48 otto Exp $ */ /*- * Copyright (c) 1989, 1993 @@ -34,7 +34,7 @@ #if 0 static const char sccsid[] = "@(#)spec.c 8.1 (Berkeley) 6/6/93"; #else -static const char rcsid[] = "$OpenBSD: spec.c,v 1.19 2004/05/02 17:55:53 millert Exp $"; +static const char rcsid[] = "$OpenBSD: spec.c,v 1.20 2004/07/01 18:25:48 otto Exp $"; #endif #endif /* not lint */ @@ -176,7 +176,7 @@ set(t, ip) char *kw, *val = NULL; struct group *gr; struct passwd *pw; - mode_t *m; + void *m; int value; u_int32_t fset, fclr; char *ep; |