summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2011-08-11 15:25:36 -0400
committerjim-p <jimp@pfsense.org>2011-08-11 15:26:35 -0400
commit84d86f070e5cb358348ca1851003712ea55f7520 (patch)
tree5d99cdb58ea35b7319f8a0ee4aa9956ff161bc97 /etc
parentadacdf5f45c98856a691059419105aaefaf719e8 (diff)
downloadpfsense-84d86f070e5cb358348ca1851003712ea55f7520.zip
pfsense-84d86f070e5cb358348ca1851003712ea55f7520.tar.gz
Fix missing $ on variable.
Diffstat (limited to 'etc')
-rw-r--r--etc/inc/priv.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/priv.inc b/etc/inc/priv.inc
index 4321c44..ec941d2 100644
--- a/etc/inc/priv.inc
+++ b/etc/inc/priv.inc
@@ -88,7 +88,7 @@ function cmp_privkeys($a, $b) {
$auser = strncmp("user-", $a, 5);
$buser = strncmp("user-", $b, 5);
if($auser != $buser)
- return $auser - buser;
+ return $auser - $buser;
/* name compare others */
return strcasecmp($a, $b);
OpenPOWER on IntegriCloud