From c9cd8dc193e71a305936f78d066bb78dfa62c765 Mon Sep 17 00:00:00 2001 From: Kirill Solomko Date: Fri, 28 Jul 2017 00:05:57 +0200 Subject: [PATCH] TT#18318 vmnotify: fix CONFIG call error * fix $CONFIG call as a hashref Change-Id: I8d7ccf8fa0560f3b2e529821656179df8ecb5956 --- vmnotify | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmnotify b/vmnotify index efc7677..584d311 100755 --- a/vmnotify +++ b/vmnotify @@ -231,7 +231,7 @@ sub main { send_mwi_notify(); if ($extended && - $CONFIG->{EXT_NOTIFY} && $CONFIG->{EXT_NOTIFY} eq "yes") { + $CONFIG{EXT_NOTIFY} && $CONFIG{EXT_NOTIFY} eq "yes") { send_ext_notify(); } };