summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2016-05-25 13:32:29 +0000
committerderaadt <deraadt@openbsd.org>2016-05-25 13:32:29 +0000
commitcf7cb95fe3ffb77ca67344ea6fd8b461a11fdbac (patch)
tree1097163f94016581f3252b5f2c4f8af094f73c01
parentMNT_EXKERB bit is unused (diff)
downloadwireguard-openbsd-cf7cb95fe3ffb77ca67344ea6fd8b461a11fdbac.tar.xz
wireguard-openbsd-cf7cb95fe3ffb77ca67344ea6fd8b461a11fdbac.zip
remove code to display MNT_EXKERB bit
-rw-r--r--usr.sbin/pstat/pstat.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c
index 30ec9c636b8..28a65fc6032 100644
--- a/usr.sbin/pstat/pstat.c
+++ b/usr.sbin/pstat/pstat.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pstat.c,v 1.103 2016/04/25 19:19:34 tedu Exp $ */
+/* $OpenBSD: pstat.c,v 1.104 2016/05/25 13:32:29 deraadt Exp $ */
/* $NetBSD: pstat.c,v 1.27 1996/10/23 22:50:06 cgd Exp $ */
/*-
@@ -723,11 +723,6 @@ mount_print(struct mount *mp)
flags &= ~MNT_EXPORTANON;
comma = ",";
}
- if (flags & MNT_EXKERB) {
- (void)printf("%sexkerb", comma);
- flags &= ~MNT_EXKERB;
- comma = ",";
- }
if (flags & MNT_LOCAL) {
(void)printf("%slocal", comma);
flags &= ~MNT_LOCAL;