diff options
author | NOYB <Al_Stu@Frontier.com> | 2016-04-04 00:05:19 -0700 |
---|---|---|
committer | NOYB <Al_Stu@Frontier.com> | 2016-04-04 00:05:19 -0700 |
commit | 530e47076d1ec2b0cd2fcbfa6ec78983cf81fcb5 (patch) | |
tree | b946921712c2ea050eb53fd7dd74bf139ceada39 /src/etc/inc/util.inc | |
parent | 75173246398545de3de104648c068444d51175a1 (diff) | |
download | pfsense-530e47076d1ec2b0cd2fcbfa6ec78983cf81fcb5.zip pfsense-530e47076d1ec2b0cd2fcbfa6ec78983cf81fcb5.tar.gz |
Includes - Remove Personalizations
Remove "you" personalizations.
Diffstat (limited to 'src/etc/inc/util.inc')
-rw-r--r-- | src/etc/inc/util.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/etc/inc/util.inc b/src/etc/inc/util.inc index e74dc64..7449dc8 100644 --- a/src/etc/inc/util.inc +++ b/src/etc/inc/util.inc @@ -148,7 +148,7 @@ function config_unlock() { function lock($lock, $op = LOCK_SH) { global $g, $cfglckkeyconsumers; if (!$lock) { - die(gettext("WARNING: You must give a name as parameter to lock() function.")); + die(gettext("WARNING: A name must be given as parameter to lock() function.")); } if (!file_exists("{$g['tmp_path']}/{$lock}.lock")) { @touch("{$g['tmp_path']}/{$lock}.lock"); @@ -167,7 +167,7 @@ function lock($lock, $op = LOCK_SH) { function try_lock($lock, $timeout = 5) { global $g, $cfglckkeyconsumers; if (!$lock) { - die(gettext("WARNING: You must give a name as parameter to try_lock() function.")); + die(gettext("WARNING: A name must be given as parameter to try_lock() function.")); } if (!file_exists("{$g['tmp_path']}/{$lock}.lock")) { @touch("{$g['tmp_path']}/{$lock}.lock"); |