summaryrefslogtreecommitdiffstats
path: root/sbin/mount
diff options
context:
space:
mode:
authortrhodes <trhodes@FreeBSD.org>2003-12-07 23:02:16 +0000
committertrhodes <trhodes@FreeBSD.org>2003-12-07 23:02:16 +0000
commit86020671d0f225a2c606cedabd2521b41abd9329 (patch)
treef4d7460bad259a8e1887bbcb674aeb4ed06321fe /sbin/mount
parent29447d88806a826ee27a012db8af2a13872a2c86 (diff)
downloadFreeBSD-src-86020671d0f225a2c606cedabd2521b41abd9329.zip
FreeBSD-src-86020671d0f225a2c606cedabd2521b41abd9329.tar.gz
Style change
Diffstat (limited to 'sbin/mount')
-rw-r--r--sbin/mount/getmntopts.c2
-rw-r--r--sbin/mount/mount.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sbin/mount/getmntopts.c b/sbin/mount/getmntopts.c
index 04d2ff2..603daad 100644
--- a/sbin/mount/getmntopts.c
+++ b/sbin/mount/getmntopts.c
@@ -81,7 +81,7 @@ getmntopts(options, m0, flagp, altflagp)
* ignore the assignment as it's handled elsewhere
*/
p = strchr(opt, '=');
- if (p)
+ if (p != NULL)
*++p = '\0';
/* Scan option table. */
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c
index 75e72bf..7806ecc 100644
--- a/sbin/mount/mount.c
+++ b/sbin/mount/mount.c
@@ -602,7 +602,7 @@ mangle(options, argcp, argv)
if (*p == '-') {
argv[argc++] = p;
p = strchr(p, '=');
- if (p) {
+ if (p != NULL) {
*p = '\0';
argv[argc++] = p+1;
}
OpenPOWER on IntegriCloud