diff options
Diffstat (limited to 'sh/rc-functions.sh.in')
-rw-r--r-- | sh/rc-functions.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/rc-functions.sh.in b/sh/rc-functions.sh.in index 50ba20b5..de430742 100644 --- a/sh/rc-functions.sh.in +++ b/sh/rc-functions.sh.in @@ -50,7 +50,7 @@ is_net_fs() # Fall back on fs types local t=$(mountinfo --fstype "$1") - for x in $net_fs_list; do + for x in $net_fs_list $extra_net_fs_list; do [ "$x" = "$t" ] && return 0 done return 1 |