Fix missing $ on variable.

This commit is contained in:
jim-p 2011-08-11 15:25:36 -04:00
parent aeb6ffe256
commit d6c311d3cf

View File

@ -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);