Bugzilla – Attachment 145946 Details for
Bug 32537
Add 'no_block' option to sip_cli_emulator
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 32537: (QA follow-up) Don't allow invalid no block values
Bug-32537-QA-follow-up-Dont-allow-invalid-no-block.patch (text/plain), 893 bytes, created by
Martin Renvoize (ashimema)
on 2023-02-01 13:54:39 UTC
(
hide
)
Description:
Bug 32537: (QA follow-up) Don't allow invalid no block values
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2023-02-01 13:54:39 UTC
Size:
893 bytes
patch
obsolete
>From 1798c0be8cfe3b2cda0a0480eb2587bdf9699183 Mon Sep 17 00:00:00 2001 >From: Kyle Hall <kyle@bywatersolutions.com> >Date: Tue, 3 Jan 2023 08:12:08 -0500 >Subject: [PATCH] Bug 32537: (QA follow-up) Don't allow invalid no block values > >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > misc/sip_cli_emulator.pl | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/misc/sip_cli_emulator.pl b/misc/sip_cli_emulator.pl >index 441234dd7e4..64948a36640 100755 >--- a/misc/sip_cli_emulator.pl >+++ b/misc/sip_cli_emulator.pl >@@ -54,7 +54,7 @@ my $fee_identifier; > my $transaction_id; > my $pickup_location; > my $hold_mode; >-my $no_block; >+my $no_block = 'N'; > > my $terminator = q{}; > >@@ -103,7 +103,7 @@ if ( $help > exit(); > } > >-$no_block //= 'N'; >+$no_block = $no_block eq 'Y' ? 'Y' : 'N'; > > $terminator = ( $terminator eq 'CR' ) ? $CR : $CRLF; > >-- >2.39.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 32537
:
144855
|
144895
|
144935
|
144936
|
145945
| 145946 |
145947