mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Small diffs that p4 didn't catch when I extracted
the diffs from my branch.
This commit is contained in:
parent
7b333193e0
commit
c005cd89e1
1 changed files with 1 additions and 2 deletions
|
|
@ -77,7 +77,6 @@ main(argc, argv)
|
|||
int ch, mntflags;
|
||||
char source[MAXPATHLEN];
|
||||
char target[MAXPATHLEN];
|
||||
int error;
|
||||
|
||||
mntflags = 0;
|
||||
while ((ch = getopt(argc, argv, "o:")) != -1)
|
||||
|
|
@ -106,7 +105,7 @@ main(argc, argv)
|
|||
iov[0].iov_base = "fstype";
|
||||
iov[0].iov_len = sizeof("fstype");
|
||||
iov[1].iov_base = "nullfs";
|
||||
iov[1].iov_len = strlen("nullfs") + 1;
|
||||
iov[1].iov_len = strlen(iov[1].iov_base) + 1;
|
||||
iov[2].iov_base = "fspath";
|
||||
iov[2].iov_len = sizeof("fspath");
|
||||
iov[3].iov_base = source;
|
||||
|
|
|
|||
Loading…
Reference in a new issue