From 7d7b86c41e123c117da51989cc0b9bdb46731588 Mon Sep 17 00:00:00 2001 From: Kyle Hall Date: Tue, 3 Jan 2023 08:14:50 -0500 Subject: [PATCH] Bug 32537: (QA follow-up): Tidy code Signed-off-by: Martin Renvoize --- misc/sip_cli_emulator.pl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/misc/sip_cli_emulator.pl b/misc/sip_cli_emulator.pl index 64948a36640..60bba2013a4 100755 --- a/misc/sip_cli_emulator.pl +++ b/misc/sip_cli_emulator.pl @@ -103,9 +103,8 @@ if ( $help exit(); } -$no_block = $no_block eq 'Y' ? 'Y' : 'N'; - -$terminator = ( $terminator eq 'CR' ) ? $CR : $CRLF; +$no_block = $no_block eq 'Y' ? 'Y' : 'N'; +$terminator = $terminator eq 'CR' ? $CR : $CRLF; # Set perl to expect the same record terminator it is sending $/ = $terminator; -- 2.39.1