summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-05-15 11:46:00 +0000
committerBodo Möller <bodo@openssl.org>1999-05-15 11:46:00 +0000
commitad2cb8b4f6e8715e54c9e4ec3059cfe0831fda87 (patch)
tree0bfbce2db1559e72f1b481db56464dcd66a65786 /util
parentd3407350d87791ab4fa369d2b5a58f27d9680fd0 (diff)
Return 0 for an error, 1 for no error from read_options;
that's what the calling code seems to expect.
Diffstat (limited to 'util')
-rwxr-xr-xutil/mk1mf.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index 355143b703..fa2149e8ac 100755
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -831,6 +831,6 @@ sub read_options
elsif (/^-[lL].*$/) { $l_flags.="$_ "; }
elsif ((!/^-help/) && (!/^-h/) && (!/^-\?/) && /^-.*$/)
{ $c_flags.="$_ "; }
- else { return(1); }
- return(0);
+ else { return(0); }
+ return(1);
}