1
0
Fork 0

*** empty log message ***

This commit is contained in:
bagyenda 2008-05-05 21:22:44 +00:00
parent d9be1198a5
commit 9bf11ffd57
2 changed files with 5 additions and 5 deletions

View File

@ -294,7 +294,7 @@ static MmsEnvelope *pgq_queue_readenvelope(char *qf, char *mms_queuedir, int sho
if (mms_validate_address(e->from) != 0) {
warning(0, "mms_queueread: Mal-formed address [%s] in queue entry %s/%s! "
"Attempting fixup.", octstr_get_cstr(e->from), mms_queuedir, qf);
_mms_fixup_address(&e->from, NULL,1);
_mms_fixup_address(&e->from, NULL,NULL,1);
}
/* now read the headers... */
@ -328,7 +328,7 @@ static MmsEnvelope *pgq_queue_readenvelope(char *qf, char *mms_queuedir, int sho
if (mms_validate_address(t) != 0) {
warning(0, "mms_queueread: Mal-formed address [%s] in queue entry %s/%s! "
"Attempting fixup.", res, mms_queuedir, qf);
_mms_fixup_address(&t, NULL,1);
_mms_fixup_address(&t, NULL,NULL,1);
}
to = gw_malloc(sizeof *to);
to->rcpt = t;

View File

@ -137,9 +137,9 @@ int main(int argc, char *argv[])
mime_entity_destroy(mime);
}
} else
m = mms_frombinary_ex(data, from ? from : octstr_imm("anon@anon"),
octstr_get_cstr(settings->unified_prefix),
settings->strip_prefixes);
m = mms_frombinary_ex(data, from ? from : octstr_imm("anon@anon"),
octstr_get_cstr(settings->unified_prefix),
settings->strip_prefixes);
if (m)
mms_msgdump(m,1);
msize = octstr_len(data);