summaryrefslogtreecommitdiff
path: root/mh/mhn.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2005-06-23 13:23:37 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2005-06-23 13:23:37 +0000
commit554755172702ace341b4ed113408804984270789 (patch)
tree91690d9d85e506676ea6bfe98e948b7be09d2cb6 /mh/mhn.c
parent8c6fcf1e76574f20010acf98f77169c3afc6e443 (diff)
downloadmailutils-554755172702ace341b4ed113408804984270789.tar.gz
mailutils-554755172702ace341b4ed113408804984270789.tar.bz2
Use mu_mail_directory, mu_folder_directory and related calls.
Diffstat (limited to 'mh/mhn.c')
-rw-r--r--mh/mhn.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mh/mhn.c b/mh/mhn.c
index 119a5480d..df1754736 100644
--- a/mh/mhn.c
+++ b/mh/mhn.c
@@ -2551,7 +2551,7 @@ main (int argc, char **argv)
mh_error (_("extra arguments"));
return 1;
}
- message = mh_file_to_message (mu_path_folder_dir, input_file);
+ message = mh_file_to_message (mu_folder_directory (), input_file);
if (!message)
return 1;
}
@@ -2563,7 +2563,7 @@ main (int argc, char **argv)
return 1;
}
input_file = argc == 1 ? argv[0] : "draft";
- message = mh_file_to_message (mu_path_folder_dir, input_file);
+ message = mh_file_to_message (mu_folder_directory (), input_file);
if (!message)
return 1;
}
@@ -2578,7 +2578,7 @@ main (int argc, char **argv)
case mode_compose:
/* Prepare filename for diagnostic purposes */
if (input_file[0] != '/')
- asprintf (&input_file, "%s/%s", mu_path_folder_dir, input_file);
+ asprintf (&input_file, "%s/%s", mu_folder_directory (), input_file);
rc = mhn_compose ();
break;

Return to:

Send suggestions and report system problems to the System administrator.