diff options
| author | John Birrell <jb@FreeBSD.org> | 1998-01-09 06:05:13 +0000 |
|---|---|---|
| committer | John Birrell <jb@FreeBSD.org> | 1998-01-09 06:05:13 +0000 |
| commit | d9b8124d7d87400a574e030e82c916d332af9f85 (patch) | |
| tree | 83747e4cc8cffc7d477c0572c2fa9c6bca648394 | |
| parent | 8d6fec39d26a2d92360aa431e7e9d42eff4c4922 (diff) | |
Notes
| -rw-r--r-- | usr.bin/xinstall/xinstall.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/usr.bin/xinstall/xinstall.c b/usr.bin/xinstall/xinstall.c index 53c7f9ce60e2f..607d7ada316b1 100644 --- a/usr.bin/xinstall/xinstall.c +++ b/usr.bin/xinstall/xinstall.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "From: @(#)xinstall.c 8.1 (Berkeley) 7/21/93"; #endif static const char rcsid[] = - "$Id: xinstall.c,v 1.26 1997/10/27 22:53:33 ache Exp $"; + "$Id: xinstall.c,v 1.27 1997/10/28 14:20:10 ache Exp $"; #endif /* not lint */ /*- @@ -713,10 +713,18 @@ trymmap(fd) if (fstatfs(fd, &stfs) < 0) return 0; + +/* NetBSD MOUNT_XXX defines are strings, but doesn't have a MOUNT_NONE. */ +#ifdef MOUNT_NONE switch(stfs.f_type) { case MOUNT_UFS: /* should be safe.. */ case MOUNT_CD9660: /* should be safe.. */ return 1; } +#else + if (strcmp(stfs.f_fstypename,MOUNT_UFS) == 0 || + strcmp(stfs.f_fstypename,MOUNT_CD9660) == 0) + return 1; +#endif return 0; } |
