Commit ad2cb8b4 authored by Bodo Möller's avatar Bodo Möller
Browse files

Return 0 for an error, 1 for no error from read_options;

that's what the calling code seems to expect.
parent d3407350
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);
	}