From 0a9bd6b010062887587ddf99bc16263ebfd89dd0 Mon Sep 17 00:00:00 2001 From: Mike Smith Date: Wed, 30 Apr 1997 05:48:22 +0000 Subject: [PATCH] Fix parsing of mount options with '=' in their name. PR: bin/3027 Submitted by: Louis Mamakos --- sbin/mount/getmntopts.c | 2 +- sbin/mount_ifs/getmntopts.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sbin/mount/getmntopts.c b/sbin/mount/getmntopts.c index 583d154f4793..f0cd27c058a7 100644 --- a/sbin/mount/getmntopts.c +++ b/sbin/mount/getmntopts.c @@ -78,7 +78,7 @@ getmntopts(options, m0, flagp, altflagp) */ p = strchr(opt, '='); if (p) - *p = '\0'; + *++p = '\0'; /* Scan option table. */ for (m = m0; m->m_option != NULL; ++m) { diff --git a/sbin/mount_ifs/getmntopts.c b/sbin/mount_ifs/getmntopts.c index 583d154f4793..f0cd27c058a7 100644 --- a/sbin/mount_ifs/getmntopts.c +++ b/sbin/mount_ifs/getmntopts.c @@ -78,7 +78,7 @@ getmntopts(options, m0, flagp, altflagp) */ p = strchr(opt, '='); if (p) - *p = '\0'; + *++p = '\0'; /* Scan option table. */ for (m = m0; m->m_option != NULL; ++m) {