Unbreak for current.

Submitted by:	dima
This commit is contained in:
Justin M. Seger 1998-10-16 00:55:28 +00:00
parent a80e63be7b
commit 70b97c41ab
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=14032
2 changed files with 5 additions and 6 deletions

View File

@ -3,7 +3,7 @@
# Date created: 14 June 1997
# Whom: Dmitrij Tejblum <dima@tejblum.dnttm.rssi.ru>
#
# $Id: Makefile,v 1.6 1998/07/07 19:17:15 dt Exp $
# $Id: Makefile,v 1.7 1998/10/14 00:26:49 jseger Exp $
#
DISTNAME= Sharity-Light.1.0.s
@ -15,11 +15,6 @@ MASTER_SITES= ftp://ftp.obdev.at/pub/Products/Sharity-Light/ \
MAINTAINER= dt@FreeBSD.ORG
OSVERSION!= sysctl -n kern.osreldate
.if ${OSVERSION} >= 300000
BROKEN= MOUNT_NFS undeclared
.endif
MAN8= smbmount.8
post-extract:

View File

@ -50,7 +50,11 @@ main(int argc, char** argv)
char* s;
int error;
if (argc > 0 && strcmp(abspath, mntbuf[i].f_mntonname) != 0) continue;
#if defined(__FreeBSD_version) && __FreeBSD_version > 300000
if (strcmp(mntbuf[i].f_fstypename, "nfs") != 0) continue;
#else
if (mntbuf[i].f_type != MOUNT_NFS) continue;
#endif
if (strncmp(mntbuf[i].f_mntfromname, "shlight-", 8) != 0) continue;
pid=strtoul(mntbuf[i].f_mntfromname+8, &s, 10);
if (*s) continue;