X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fdropsbr.c;h=6a7eb78ff95f68d139435ca0fcc77412e45185d2;hb=e711cf1c50af5e151a721f6f1690474bc9ef658d;hp=f093c2fd4824c53b5200189683fa6e66ccf32eb8;hpb=ef1216bc36bd48ceb7549ae76aa7c26e3be4d9e4;p=mmh 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;