| /freebsd-12.1/sbin/mount/ |
| H A D | mount_fs.c | 83 char *dev, *dir, mntpath[MAXPATHLEN]; in mount_fs() local 122 if (checkpath(dir, mntpath) != 0) { in mount_fs() 123 warn("%s", mntpath); in mount_fs() 129 build_iovec(&iov, &iovlen, "fspath", mntpath, (size_t)-1); in mount_fs()
|
| H A D | mount.c | 575 char *optbuf, execname[PATH_MAX], mntpath[PATH_MAX]; in mountfs() local 579 if (checkpath(name, mntpath) != 0) { in mountfs() 580 warn("%s", mntpath); in mountfs() 583 name = mntpath; in mountfs()
|
| /freebsd-12.1/sbin/mount_udf/ |
| H A D | mount_udf.c | 78 char mntpath[MAXPATHLEN]; in main() local 117 if (checkpath(dir, mntpath) != 0) in main() 118 err(EX_USAGE, "%s", mntpath); in main() 127 build_iovec(&iov, &iovlen, "fspath", mntpath, (size_t)-1); in main()
|
| /freebsd-12.1/sbin/mount_msdosfs/ |
| H A D | mount_msdosfs.c | 76 char *dev, *dir, mntpath[MAXPATHLEN], *csp; in main() local 198 if (checkpath(dir, mntpath) != 0) in main() 199 err(EX_USAGE, "%s", mntpath); in main() 203 if (stat(mntpath, &sb) == -1) in main() 204 err(EX_OSERR, "stat %s", mntpath); in main() 216 build_iovec(&iov, &iovlen, "fspath", mntpath, (size_t)-1); in main()
|
| /freebsd-12.1/sbin/mount_cd9660/ |
| H A D | mount_cd9660.c | 89 char *dev, *dir, *p, *val, mntpath[MAXPATHLEN]; in main() local 154 if (checkpath(dir, mntpath) != 0) in main() 155 err(1, "%s", mntpath); in main() 179 build_iovec(&iov, &iovlen, "fspath", mntpath, (size_t)-1); in main()
|
| /freebsd-12.1/bin/df/ |
| H A D | df.c | 131 char *mntpath; in main() local 263 mntpath = strdup("/tmp/df.XXXXXX"); in main() 264 if (mntpath == NULL) { in main() 269 mntpt = mkdtemp(mntpath); in main() 271 xo_warn("mkdtemp(\"%s\") failed", mntpath); in main() 273 free(mntpath); in main() 281 mntpath); in main() 295 free(mntpath); in main() 308 free(mntpath); in main()
|
| /freebsd-12.1/sbin/mount_fusefs/ |
| H A D | mount_fusefs.c | 123 char *dev = NULL, *dir = NULL, mntpath[MAXPATHLEN]; in main() local 333 if (checkpath(dir, mntpath) != 0) in main() 334 err(1, "%s", mntpath); in main() 424 build_iovec(&iov, &iovlen, "fspath", mntpath, -1); in main() 432 err(EX_OSERR, "%s on %s", dev, mntpath); in main()
|
| /freebsd-12.1/sbin/mount_nfs/ |
| H A D | mount_nfs.c | 156 char mntpath[MAXPATHLEN], errmsg[255]; in main() local 458 if (checkpath(mntname, mntpath) != 0) in main() 459 err(1, "%s", mntpath); in main() 462 build_iovec(&iov, &iovlen, "fspath", mntpath, (size_t)-1); in main() 466 err(1, "nmount: %s%s%s", mntpath, errmsg[0] ? ", " : "", in main()
|