scstadmin: Fix Perl syntax

The Perl operator for comparing strings is "eq" and not "=".


git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@5058 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Bart Van Assche
2013-10-10 15:04:16 +00:00
parent 117304c1a7
commit 2a93823408
@@ -327,7 +327,7 @@ sub SCST_SGV_DIR {
my $_scst_queue_res_path = "";
sub SCST_QUEUE_RES_PATH {
if ($_scst_queue_res_path = "") {
if ($_scst_queue_res_path eq "") {
$_scst_queue_res_path = (-d SCST_ROOT_OLD ?
SCST_ROOT_OLD . '/' . SCST_QUEUE_RES :
undef);