From d94f2b5d906b966be17025b9f6bddaca7511a9bb Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Mon, 29 Apr 2013 16:09:17 -0700 Subject: [PATCH] quote params correctly for HLR SIM export, #21514, --- FS/FS/part_export/huawei_hlr.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FS/FS/part_export/huawei_hlr.pm b/FS/FS/part_export/huawei_hlr.pm index 007981880..41cbbfb58 100644 --- a/FS/FS/part_export/huawei_hlr.pm +++ b/FS/FS/part_export/huawei_hlr.pm @@ -314,8 +314,8 @@ sub import_sim { # push IMSI/KI to the HLR my $return = $self->command($socket, @command, - 'IMSI', $imsi, - 'KIVALUE', $ki, + 'IMSI', qq{"$imsi"}, + 'KIVALUE', qq{"$ki"}, @args ); if ( $return->{success} ) { -- 2.11.0