xopen() wants 2 arguments unless you're creating a file, in which case you
authorRob Landley <rob@landley.net>
Mon, 8 Jan 2007 03:51:12 +0000 (22:51 -0500)
committerRob Landley <rob@landley.net>
Mon, 8 Jan 2007 03:51:12 +0000 (22:51 -0500)
commit1322beb384ea43a15c17f8229e7db070949dd331
tree8cd23c638a6b6aeffa0a761025848e7bce60d4f1
parent016bf8289e12346f45f543d5b048d2496f4f0256
xopen() wants 2 arguments unless you're creating a file, in which case you
need 3.  Doing varargs for this doesn't really appeal to me (bugs in waiting)
so I made an xcreate() that takes 3 args, and had xopen() call it with 0 for
the third argument.  That way, if we feed O_CREAT to xopen() the permission
000 result should be easy to spot.
lib/args.c
lib/functions.c
lib/lib.h
toys/catv.c