From 9bf11ffd57379e170f1985b449c7fcf397fdae6e Mon Sep 17 00:00:00 2001 From: bagyenda <> Date: Mon, 5 May 2008 21:22:44 +0000 Subject: [PATCH] *** empty log message *** --- mbuni/extras/pgsql-queue/mms_pgsql_queue.c | 4 ++-- mbuni/mmsc/mmssend.c | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mbuni/extras/pgsql-queue/mms_pgsql_queue.c b/mbuni/extras/pgsql-queue/mms_pgsql_queue.c index e8d0de0..65c27b2 100644 --- a/mbuni/extras/pgsql-queue/mms_pgsql_queue.c +++ b/mbuni/extras/pgsql-queue/mms_pgsql_queue.c @@ -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; diff --git a/mbuni/mmsc/mmssend.c b/mbuni/mmsc/mmssend.c index 6942bf6..d451785 100644 --- a/mbuni/mmsc/mmssend.c +++ b/mbuni/mmsc/mmssend.c @@ -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);