diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-06-11 22:08:35 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-06-11 22:08:35 +0000 |
commit | 7c539f0e7e8bb93826db65ca47dcf758c41bb0ff (patch) | |
tree | 1b07b6b0ae3d6dc6eda89826f83cbf4d9cc48d25 | |
parent | 92b753f80d95be30300819e8355bcb6f4ea6b2b4 (diff) | |
download | pfsense-7c539f0e7e8bb93826db65ca47dcf758c41bb0ff.zip pfsense-7c539f0e7e8bb93826db65ca47dcf758c41bb0ff.tar.gz |
require -> require_once
-rwxr-xr-x | etc/rc.conf_mount_ro | 2 | ||||
-rwxr-xr-x | etc/rc.conf_mount_rw | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc.conf_mount_ro b/etc/rc.conf_mount_ro index a0d3092..c28aecc 100755 --- a/etc/rc.conf_mount_ro +++ b/etc/rc.conf_mount_ro @@ -29,7 +29,7 @@ POSSIBILITY OF SUCH DAMAGE. */ -require("config.inc"); +require_once("config.inc"); conf_mount_ro(); diff --git a/etc/rc.conf_mount_rw b/etc/rc.conf_mount_rw index b9f72cd..5f277e3 100755 --- a/etc/rc.conf_mount_rw +++ b/etc/rc.conf_mount_rw @@ -29,7 +29,7 @@ POSSIBILITY OF SUCH DAMAGE. */ -require("config.inc"); +require_once("config.inc"); conf_mount_rw(); |