X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fdropsbr.c;h=6a7eb78ff95f68d139435ca0fcc77412e45185d2;hp=f093c2fd4824c53b5200189683fa6e66ccf32eb8;hb=39d862d5f0ba0258707ef5a74cff63243f58e425;hpb=ca1023716d4c2ab890696f3e41fa0d94267a940e diff --git a/uip/dropsbr.c b/uip/dropsbr.c index f093c2f..6a7eb78 100644 --- a/uip/dropsbr.c +++ b/uip/dropsbr.c @@ -25,7 +25,7 @@ ** a file or maildrop. */ int -mbx_open(char *file, uid_t uid, gid_t gid, mode_t mode) +mbox_open(char *file, uid_t uid, gid_t gid, mode_t mode) { int i, count, fd; struct stat st; @@ -102,7 +102,7 @@ mbx_open(char *file, uid_t uid, gid_t gid, mode_t mode) ** Append message to end of mbox. */ int -mbx_copy(int to, int from) +mbox_copy(int to, int from) { int i; char buffer[BUFSIZ]; @@ -194,7 +194,7 @@ mbx_copy(int to, int from) ** Close and unlock file/maildrop. */ int -mbx_close(char *mailbox, int md) +mbox_close(char *mailbox, int md) { if (lkclose(md, mailbox) == 0) return OK;