From 9a068c2500b3d8d473900dfaaf7d3fb5d593862d Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Wed, 6 Jul 2011 09:53:05 -0500 Subject: [PATCH] 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. --- sh/rc-functions.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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