From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-2.9 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00 shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: meta@public-inbox.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id E59A81F8A1; Sun, 21 Dec 2014 11:41:30 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Cc: Eric Wong Subject: [PATCH] disable case-insensitive option parsing Date: Sun, 21 Dec 2014 11:41:29 +0000 Message-Id: <1419162089-9472-1-git-send-email-e@80x24.org> X-Mailer: git-send-email 2.2.1.62.g3f15098 List-Id: Case-insensitivity considered harmful, Not Safe For Life, Unsafe at any speed, etc... --- ssoma | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssoma b/ssoma index a3b0374..064349e 100755 --- a/ssoma +++ b/ssoma @@ -13,7 +13,7 @@ use File::Temp qw/tempfile/; use File::Spec qw//; use Email::LocalDelivery; use constant CRON_RAND_DELAY => 60; # adjust as necessary -Getopt::Long::Configure("require_order", "pass_through"); +Getopt::Long::Configure("require_order", "pass_through", "no_ignore_case"); our %opts; GetOptions( "help|h" => \$opts{help}, -- EW