summaryrefslogtreecommitdiff
path: root/pop3d/pop3d.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2005-08-26 14:23:32 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2005-08-26 14:23:32 +0000
commit6178304b1670d7288d8a37b9165bda5cbc44c180 (patch)
treee17d3bce1e0b2a537937bc331efa240ce382b81e /pop3d/pop3d.c
parentef22616eba2aaa4e05079852ac1fa67c4ceeff08 (diff)
downloadmailutils-6178304b1670d7288d8a37b9165bda5cbc44c180.tar.gz
mailutils-6178304b1670d7288d8a37b9165bda5cbc44c180.tar.bz2
Normalize global namespace. Part 1
Diffstat (limited to 'pop3d/pop3d.c')
-rw-r--r--pop3d/pop3d.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/pop3d/pop3d.c b/pop3d/pop3d.c
index 3c14ac6d5..251c57baf 100644
--- a/pop3d/pop3d.c
+++ b/pop3d/pop3d.c
@@ -1,5 +1,6 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004,
+ 2005 Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -242,7 +243,7 @@ main (int argc, char **argv)
if (daemon_param.pidfile)
{
- daemon_create_pidfile (daemon_param.pidfile);
+ mu_daemon_create_pidfile (daemon_param.pidfile);
}
/* Check TLS environment, i.e. cert and key files */
@@ -383,11 +384,11 @@ pop3d_mainloop (int fd, FILE *infile, FILE *outfile)
the lock may be stale because downloading on slow modem.
We rely on the size of the mailbox for the check and bail if out
of sync. */
- if (state == TRANSACTION && !mailbox_is_updated (mbox))
+ if (state == TRANSACTION && !mu_mailbox_is_updated (mbox))
{
static off_t mailbox_size;
off_t newsize = 0;
- mailbox_get_size (mbox, &newsize);
+ mu_mailbox_get_size (mbox, &newsize);
/* Did we shrink? First time save the size. */
if (!mailbox_size)
mailbox_size = newsize;

Return to:

Send suggestions and report system problems to the System administrator.