mirror of git://git.suckless.org/ubase
mount: only use source if not set
Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>
This commit is contained in:
parent
df9e438843
commit
55fa13016c
3
mount.c
3
mount.c
|
@ -135,9 +135,10 @@ main(int argc, char *argv[])
|
||||||
strcmp(me->mnt_fsname, target) == 0 ||
|
strcmp(me->mnt_fsname, target) == 0 ||
|
||||||
(source && strcmp(me->mnt_dir, source) == 0) ||
|
(source && strcmp(me->mnt_dir, source) == 0) ||
|
||||||
(source && strcmp(me->mnt_fsname, source) == 0)) {
|
(source && strcmp(me->mnt_fsname, source) == 0)) {
|
||||||
if(!source)
|
if(!source) {
|
||||||
target = me->mnt_dir;
|
target = me->mnt_dir;
|
||||||
source = me->mnt_fsname;
|
source = me->mnt_fsname;
|
||||||
|
}
|
||||||
if(!oflag)
|
if(!oflag)
|
||||||
parseopts(me->mnt_opts, &flags, data, datasiz);
|
parseopts(me->mnt_opts, &flags, data, datasiz);
|
||||||
if(!types)
|
if(!types)
|
||||||
|
|
Loading…
Reference in New Issue