diff options
author | Ermal <eri@pfsense.org> | 2010-10-16 16:19:36 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2010-10-16 16:19:36 +0000 |
commit | 659963994dce689bdaaa5cdd83bc77008737d92a (patch) | |
tree | 1ec15ea4dd750737d1c67255b646fef1b2b97d90 | |
parent | 814bb2dcb7154485030fb25cac89f2e8b7cc0c73 (diff) | |
download | pfsense-659963994dce689bdaaa5cdd83bc77008737d92a.zip pfsense-659963994dce689bdaaa5cdd83bc77008737d92a.tar.gz |
Resolves #957. Correct the code to reflect what its supposed to do.
-rw-r--r-- | etc/inc/services.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/services.inc b/etc/inc/services.inc index 6b1b407..b0b658f 100644 --- a/etc/inc/services.inc +++ b/etc/inc/services.inc @@ -590,7 +590,7 @@ function services_dhcrelay_configure() { function services_dyndns_configure_client($conf) { if (!isset($conf['enable'])) - continue; + return; /* load up the dyndns.class */ require_once("dyndns.class"); |