forked from Bananymous/banan-os
Userspace: fix return values of cat and echo
This commit is contained in:
parent
db49cbd6e2
commit
ee8de77a90
|
@ -32,14 +32,15 @@ int main(int argc, char** argv)
|
||||||
ret = 1;
|
ret = 1;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (cat_file(fp))
|
if (!cat_file(fp))
|
||||||
ret = 1;
|
ret = 1;
|
||||||
fclose(fp);
|
fclose(fp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
ret = cat_file(stdin);
|
if (!cat_file(stdin))
|
||||||
|
ret = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
|
@ -36,5 +36,5 @@ int main(int argc, char** argv)
|
||||||
fputc(' ', stdout);
|
fputc(' ', stdout);
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
return 1;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue