summaryrefslogtreecommitdiff
path: root/mail.remote
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 /mail.remote
parentef22616eba2aaa4e05079852ac1fa67c4ceeff08 (diff)
downloadmailutils-6178304b1670d7288d8a37b9165bda5cbc44c180.tar.gz
mailutils-6178304b1670d7288d8a37b9165bda5cbc44c180.tar.bz2
Normalize global namespace. Part 1
Diffstat (limited to 'mail.remote')
-rw-r--r--mail.remote/mail.remote.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/mail.remote/mail.remote.c b/mail.remote/mail.remote.c
index cb748a910..aeb372d25 100644
--- a/mail.remote/mail.remote.c
+++ b/mail.remote/mail.remote.c
@@ -1,6 +1,6 @@
1/* GNU Mailutils -- a suite of utilities for electronic mail 1/* GNU Mailutils -- a suite of utilities for electronic mail
2 Copyright (C) 1999, 2000, 2001, 2002, 2004, 2005 Free Software Foundation, 2 Copyright (C) 1999, 2000, 2001, 2002, 2004,
3 Inc. 3 2005 Free Software Foundation, Inc.
4 4
5 GNU Mailutils is free software; you can redistribute it and/or modify 5 GNU Mailutils is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by 6 it under the terms of the GNU General Public License as published by
@@ -138,8 +138,8 @@ stream_t in; /* Input stream */
138void 138void
139mr_exit (int status) 139mr_exit (int status)
140{ 140{
141 address_destroy (&from); 141 mu_address_destroy (&from);
142 address_destroy (&to); 142 mu_address_destroy (&to);
143 stream_destroy (&in, NULL); 143 stream_destroy (&in, NULL);
144 mailer_destroy (&mailer); 144 mailer_destroy (&mailer);
145 145
@@ -168,7 +168,7 @@ main (int argc, char **argv)
168 168
169 if (optfrom) 169 if (optfrom)
170 { 170 {
171 if ((status = address_create (&from, optfrom))) 171 if ((status = mu_address_create (&from, optfrom)))
172 { 172 {
173 mu_error (_("Parsing from addresses failed: %s"), 173 mu_error (_("Parsing from addresses failed: %s"),
174 mu_strerror (status)); 174 mu_strerror (status));
@@ -178,7 +178,7 @@ main (int argc, char **argv)
178 178
179 if (argv[optind]) 179 if (argv[optind])
180 { 180 {
181 if ((status = address_createv (&to, (const char **) (argv + optind), -1))) 181 if ((status = mu_address_createv (&to, (const char **) (argv + optind), -1)))
182 { 182 {
183 mu_error (_("Parsing recipient addresses failed: %s"), 183 mu_error (_("Parsing recipient addresses failed: %s"),
184 mu_strerror (status)); 184 mu_strerror (status));

Return to:

Send suggestions and report system problems to the System administrator.