projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d340735
)
Return 0 for an error, 1 for no error from read_options;
author
Bodo Möller
<bodo@openssl.org>
Sat, 15 May 1999 11:46:00 +0000
(11:46 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Sat, 15 May 1999 11:46:00 +0000
(11:46 +0000)
that's what the calling code seems to expect.
util/mk1mf.pl
patch
|
blob
|
history
diff --git
a/util/mk1mf.pl
b/util/mk1mf.pl
index 355143b703d84815746cde04b3ef91c67fa0be8b..fa2149e8ac3f86044146f8227a3ef7206af09efe 100755
(executable)
--- 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
);
}