GH249: Fix bad regexp in arg parsing.
[openssl.git] / tools / c_rehash.in
index 887e9271254e49857e8bee23aaed9e79a971df27..b086ff9cf0d964bc5577a8e8a6401ea305c75152 100644 (file)
@@ -15,13 +15,13 @@ my $symlink_exists=eval {symlink("",""); 1};
 my $removelinks = 1;
 
 ##  Parse flags.
-while ( $ARGV[0] =~ '-.*' ) {
+while ( $ARGV[0] =~ /^-/ ) {
     my $flag = shift @ARGV;
     last if ( $flag eq '--');
-    if ( $flag =~ /-old/) {
+    if ( $flag eq '-old') {
            $x509hash = "-subject_hash_old";
            $crlhash = "-hash_old";
-    } elsif ( $flag =~ /-h/) {
+    } elsif ( $flag eq '-h') {
            help();
     } elsif ( $flag eq '-n' ) {
            $removelinks = 0;