Symbol: catopt
sbin/mount/mount.c
149
options = catopt(options, optarg);
sbin/mount/mount.c
156
options = catopt(options, "ro");
sbin/mount/mount.c
171
options = catopt(options, "noro");
sbin/mount/mount.c
410
optbuf = catopt(xstrdup(mntopts), options);
sbin/mount/mount.c
415
optbuf = catopt(optbuf, "force");
sbin/mount/mount.c
417
optbuf = catopt(optbuf, "ro");
sbin/mount/mount.c
425
optbuf = catopt(optbuf, "update");
sbin/mount/mount.c
632
expopt = catopt(expopt, fstab);
sbin/mount/mount.c
634
expopt = catopt(expopt, cur);
sbin/mount/mount.c
636
expopt = catopt(expopt, o);
sbin/mount/mount.c
65
static char *catopt(char *, const char *);
sbin/mount/mount.c
659
newopt = catopt(newopt, o);
sbin/mount/mount.c
754
res = catopt(res, (flags & MNT_RDONLY) ? "ro" : "rw");
sbin/mount/mount.c
756
if (flags & MNT_SYNCHRONOUS) res = catopt(res, "sync");
sbin/mount/mount.c
757
if (flags & MNT_NOEXEC) res = catopt(res, "noexec");
sbin/mount/mount.c
758
if (flags & MNT_NOSUID) res = catopt(res, "nosuid");
sbin/mount/mount.c
759
if (flags & MNT_NODEV) res = catopt(res, "nodev");
sbin/mount/mount.c
760
if (flags & MNT_ASYNC) res = catopt(res, "async");
sbin/mount/mount.c
761
if (flags & MNT_NOATIME) res = catopt(res, "noatime");
sbin/mount/mount.c
762
if (flags & MNT_NOCLUSTERR) res = catopt(res, "noclusterr");
sbin/mount/mount.c
763
if (flags & MNT_NOCLUSTERW) res = catopt(res, "noclusterw");
sbin/mount/mount.c
764
if (flags & MNT_NOSYMFOLLOW) res = catopt(res, "nosymfollow");
sbin/mount/mount.c
765
if (flags & MNT_SUIDDIR) res = catopt(res, "suiddir");
sbin/mount/mount.c
766
if (flags & MNT_IGNORE) res = catopt(res, "ignore");
sbin/mount_ufs/mount.c
123
options = catopt(options, optarg);
sbin/mount_ufs/mount.c
130
options = catopt(options, "ro");
sbin/mount_ufs/mount.c
145
options = catopt(options, "noro");
sbin/mount_ufs/mount.c
366
optbuf = catopt(xstrdup(mntopts), options);
sbin/mount_ufs/mount.c
371
optbuf = catopt(optbuf, "force");
sbin/mount_ufs/mount.c
373
optbuf = catopt(optbuf, "ro");
sbin/mount_ufs/mount.c
381
optbuf = catopt(optbuf, "update");
sbin/mount_ufs/mount.c
589
expopt = catopt(expopt, fstab);
sbin/mount_ufs/mount.c
591
expopt = catopt(expopt, cur);
sbin/mount_ufs/mount.c
593
expopt = catopt(expopt, o);
sbin/mount_ufs/mount.c
60
static char *catopt(char *, const char *);
sbin/mount_ufs/mount.c
616
newopt = catopt(newopt, o);
sbin/mount_ufs/mount.c
711
res = catopt(res, (flags & MNT_RDONLY) ? "ro" : "rw");
sbin/mount_ufs/mount.c
713
if (flags & MNT_SYNCHRONOUS) res = catopt(res, "sync");
sbin/mount_ufs/mount.c
714
if (flags & MNT_NOEXEC) res = catopt(res, "noexec");
sbin/mount_ufs/mount.c
715
if (flags & MNT_NOSUID) res = catopt(res, "nosuid");
sbin/mount_ufs/mount.c
716
if (flags & MNT_NODEV) res = catopt(res, "nodev");
sbin/mount_ufs/mount.c
717
if (flags & MNT_ASYNC) res = catopt(res, "async");
sbin/mount_ufs/mount.c
718
if (flags & MNT_NOATIME) res = catopt(res, "noatime");
sbin/mount_ufs/mount.c
719
if (flags & MNT_NOCLUSTERR) res = catopt(res, "noclusterr");
sbin/mount_ufs/mount.c
720
if (flags & MNT_NOCLUSTERW) res = catopt(res, "noclusterw");
sbin/mount_ufs/mount.c
721
if (flags & MNT_NOSYMFOLLOW) res = catopt(res, "nosymfollow");
sbin/mount_ufs/mount.c
722
if (flags & MNT_SUIDDIR) res = catopt(res, "suiddir");
sbin/mount_ufs/mount.c
723
if (flags & MNT_IGNORE) res = catopt(res, "ignore");