#include <h/dropsbr.h>
#include <h/mts.h>
#include <h/tws.h>
-#include <errno.h>
#ifdef NTOHLSWAP
# include <netinet/in.h>
int
mbx_open (char *file, int mbx_style, uid_t uid, gid_t gid, mode_t mode)
{
- int j, count, fd;
+ int j, count, fd = NOTOK;
struct stat st;
j = 0;
/* attempt to open and lock file */
for (count = 4; count > 0; count--) {
- if ((fd = lkopen (file, O_RDWR | O_CREAT | O_NONBLOCK, mode)) == NOTOK) {
- switch (errno) {
-#if defined(FCNTL_LOCKING) || defined(LOCKF_LOCKING)
- case EACCES:
- case EAGAIN:
-#endif
-
-#ifdef FLOCK_LOCKING
- case EWOULDBLOCK:
-#endif
- case ETXTBSY:
- j = errno;
- sleep (5);
- break;
-
- default:
- /* just return error */
- return NOTOK;
- }
+ int failed_to_lock = 0;
+ if ((fd = lkopenspool (file, O_RDWR | O_CREAT |
+ O_NONBLOCK, mode, &failed_to_lock)) == NOTOK) {
+ if (failed_to_lock) {
+ j = errno;
+ sleep (5);
+ continue;
+ } else {
+ return NOTOK;
+ }
}
/* good file descriptor */
}
while ((i = read (fd, buffer, sizeof(buffer))) > 0) {
+ /* valgrind noticed that stringdex depends on null
+ termination. */
+ buffer[i] = '\0';
+
for (j = 0;
(j = stringdex (mmdlm1, buffer)) >= 0;
buffer[j]++)
int
mbx_close (char *mailbox, int md)
{
- if (lkclose (md, mailbox) == 0)
+ if (lkclosespool (md, mailbox) == 0)
return OK;
return NOTOK;
}
clear = 1;
if (!clear && map_chk (file, fd, &d1, pos, noisy)) {
- unlink (file);
+ (void) m_unlink (file);
mbx_close (file, fd);
if ((fd = map_open (file, md)) == NOTOK)
return NOTOK;