K 10 svn:author V 4 csjp K 8 svn:date V 27 2005-10-09T04:40:56.000000Z K 7 svn:log V 532 Woops, in my previous commit, I actually committed some style changes with a functional change. I know this is a big no no, so this is a forced commit to note the functional changes from my previous revision: @@ -196,7 +176,7 @@ wait_for_lock(const char *name, int flag int fd; if ((fd = open(name, O_CREAT|O_RDONLY|O_EXLOCK|flags, 0666)) == -1) { - if (errno == ENOENT || errno == EINTR || errno == EAGAIN) + if (errno == EINTR || errno == EAGAIN) return (-1); err(EX_CANTCREAT, "cannot open %s", name); } END