diff options
author | William Hubbs <williamh@gentoo.org> | 2011-07-06 09:53:05 -0500 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2011-07-06 09:53:05 -0500 |
commit | 9a068c2500b3d8d473900dfaaf7d3fb5d593862d (patch) | |
tree | dd5d2410611fc05442da23fee7fcad42a97208d2 /sh/rc-functions.sh.in | |
parent | e8e86b96dc8abbdfb7069a267873ef2950eb84cb (diff) |
The is_net_fs function should use extra_net_fs_list
This was pointed out to me by Morse on #gentoo-base, so I would like to
thank him for the patch.
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 |