mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-30 23:44:45 -04:00
34 lines
878 B
Plaintext
34 lines
878 B
Plaintext
$NetBSD: patch-ae,v 1.11 2007/08/14 19:59:18 veego Exp $
|
|
|
|
--- dialects/n+obsd/dmnt.c.orig 2005-08-08 21:53:31.000000000 +0200
|
|
+++ dialects/n+obsd/dmnt.c 2007-08-11 14:43:05.000000000 +0200
|
|
@@ -45,6 +45,15 @@
|
|
#include <sys/statvfs.h>
|
|
#endif /* defined(NETBSDV) && defined(HASSTATVFS) */
|
|
|
|
+#if defined(NETBSDV)
|
|
+#include <sys/param.h>
|
|
+
|
|
+#if __NetBSD_Version__ >= 399002400
|
|
+#include <sys/types.h>
|
|
+#include <sys/mount.h>
|
|
+#endif
|
|
+#endif
|
|
+
|
|
#include "lsof.h"
|
|
|
|
|
|
@@ -94,7 +103,12 @@
|
|
for (; n; n--, mb++) {
|
|
if (mb->f_fstypename[0] == '\0')
|
|
continue;
|
|
+#if defined(NETBSDV) && __NetBSD_Version__ >= 499002500
|
|
+ /* MFSNAMELEN was removed from the kernel source after 4.99.24 */
|
|
+ mb->f_fstypename[sizeof(mb->f_fstypename) - 1] = '\0';
|
|
+#else
|
|
mb->f_fstypename[MFSNAMELEN - 1] = '\0';
|
|
+#endif
|
|
/*
|
|
* Interpolate a possible symbolic directory link.
|
|
*/
|