summaryrefslogtreecommitdiff
path: root/mh/mh_format.c
diff options
context:
space:
mode:
Diffstat (limited to 'mh/mh_format.c')
-rw-r--r--mh/mh_format.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mh/mh_format.c b/mh/mh_format.c
index 559a8031f..022a6ed6b 100644
--- a/mh/mh_format.c
+++ b/mh/mh_format.c
@@ -1791,7 +1791,7 @@ static void
builtin_unre (struct mh_machine *mach)
{
const char *p;
- int rc = munre_subject (strobj_ptr (&mach->arg_str), &p);
+ int rc = mu_unre_subject (strobj_ptr (&mach->arg_str), &p);
if (rc == 0 && p != strobj_ptr (&mach->arg_str))
{
char *q = strdup (p); /* Create a copy, since strobj_create will
@@ -1814,11 +1814,11 @@ builtin_isreply (struct mh_machine *mach)
mu_message_get_header (mach->message, &hdr);
mu_header_aget_value (hdr, MU_HEADER_SUBJECT, &value);
- rc = munre_subject (value, NULL);
+ rc = mu_unre_subject (value, NULL);
free (value);
}
else
- rc = munre_subject (strobj_ptr (&mach->arg_str), NULL);
+ rc = mu_unre_subject (strobj_ptr (&mach->arg_str), NULL);
mach->arg_num = !rc;
}

Return to:

Send suggestions and report system problems to the System administrator.