Commit 5eb657a8 authored by Claes Sjofors's avatar Claes Sjofors

co_merege bugfix, conditional opsys didn't work

parent 117c3587
...@@ -132,7 +132,7 @@ int main( int argc, char *argv[]) ...@@ -132,7 +132,7 @@ int main( int argc, char *argv[])
while( dcli_read_line( line, sizeof(line), fp)) { while( dcli_read_line( line, sizeof(line), fp)) {
dcli_trim( line, line); dcli_trim( line, line);
if ( strncmp( line, "#if" , 3) == 0) { if ( strncmp( line, "#if" , 3) == 0) {
in_if = ! check_os( &line[5], dos); in_if = ! check_os( &line[4], dos);
continue; continue;
} }
else if ( in_if) { else if ( in_if) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment