summaryrefslogtreecommitdiff
path: root/comsat/cfg.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 /comsat/cfg.c
parentef22616eba2aaa4e05079852ac1fa67c4ceeff08 (diff)
downloadmailutils-6178304b1670d7288d8a37b9165bda5cbc44c180.tar.gz
mailutils-6178304b1670d7288d8a37b9165bda5cbc44c180.tar.bz2
Normalize global namespace. Part 1
Diffstat (limited to 'comsat/cfg.c')
-rw-r--r--comsat/cfg.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/comsat/cfg.c b/comsat/cfg.c
index d849f01ac..e04191de0 100644
--- a/comsat/cfg.c
+++ b/comsat/cfg.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998, 2001, 2002 Free Software Foundation, Inc.
+/* Copyright (C) 1998, 2001, 2002, 2005 Free Software Foundation, Inc.
This file is part of GNU Inetutils.
@@ -160,11 +160,11 @@ read_config (const char *config_file)
if (!*ptr || *ptr == '#')
continue;
- argcv_get (ptr, "", NULL, &argc, &argv);
+ mu_argcv_get (ptr, "", NULL, &argc, &argv);
if (argc < 2)
{
syslog (LOG_ERR, _("%s:%d: too few fields"), config_file, line);
- argcv_free (argc, argv);
+ mu_argcv_free (argc, argv);
continue;
}
@@ -196,7 +196,7 @@ read_config (const char *config_file)
else
{
syslog (LOG_ERR, _("%s:%d: unknown keyword"), config_file, line);
- argcv_free (argc, argv);
+ mu_argcv_free (argc, argv);
continue;
}
@@ -217,7 +217,7 @@ read_config (const char *config_file)
tail = cur;
}
- argcv_free (argc, argv);
+ mu_argcv_free (argc, argv);
acl = malloc (sizeof *acl);
if (!acl)

Return to:

Send suggestions and report system problems to the System administrator.