summaryrefslogtreecommitdiff
path: root/comsat/action.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/action.c
parentef22616eba2aaa4e05079852ac1fa67c4ceeff08 (diff)
downloadmailutils-6178304b1670d7288d8a37b9165bda5cbc44c180.tar.gz
mailutils-6178304b1670d7288d8a37b9165bda5cbc44c180.tar.bz2
Normalize global namespace. Part 1
Diffstat (limited to 'comsat/action.c')
-rw-r--r--comsat/action.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/comsat/action.c b/comsat/action.c
index 71e91572e..f972800d4 100644
--- a/comsat/action.c
+++ b/comsat/action.c
@@ -123,7 +123,7 @@ expand_escape (char **pp, message_t msg, struct obstack *stk)
memcpy (namep, start, len);
namep[len] = 0;
if (message_get_header (msg, &hdr) == 0
- && header_aget_value (hdr, namep, &sval) == 0)
+ && mu_header_aget_value (hdr, namep, &sval) == 0)
{
len = strlen (sval);
obstack_grow (stk, sval, len);
@@ -148,7 +148,7 @@ expand_escape (char **pp, message_t msg, struct obstack *stk)
if (lncount == 0)
lncount = maxlines;
if (message_get_body (msg, &body) == 0
- && body_get_stream (body, &stream) == 0)
+ && mu_body_get_stream (body, &stream) == 0)
{
size_t nread;
char *buf = malloc (size+1);
@@ -198,7 +198,7 @@ expand_line (const char *str, message_t msg)
p++;
if (*p)
{
- c = argcv_unquote_char (*p);
+ c = mu_argcv_unquote_char (*p);
obstack_1grow (&stk, c);
}
break;
@@ -353,12 +353,12 @@ run_user_action (FILE *tty, const char *cr, message_t msg)
str = expand_line (stmt, msg);
if (!str)
continue;
- if (argcv_get (str, "", NULL, &argc, &argv)
+ if (mu_argcv_get (str, "", NULL, &argc, &argv)
|| argc == 0
|| argv[0][0] == '#')
{
free (str);
- argcv_free (argc, argv);
+ mu_argcv_free (argc, argv);
continue;
}

Return to:

Send suggestions and report system problems to the System administrator.