1
0
Fork 0

*** empty log message ***

This commit is contained in:
bagyenda 2008-11-19 04:59:37 +00:00
parent bc1a24200e
commit 8aa1a1a0be
2 changed files with 13 additions and 4 deletions

View File

@ -1106,7 +1106,7 @@ static void pgq_queue_run(char *dir,
for (i=0;i<num_threads; i++)
gwthread_wakeup(th_ids[i]);
#if 0
#if 1
for (i=0;i<num_threads; i++)
gwthread_join(th_ids[i]);
#endif

View File

@ -233,10 +233,19 @@ static int mm7soap_receive(MmsBoxHTTPClientInfo *h)
octstr_get_cstr(qdir),
"MM7/SOAP-IN",
NULL);
msgid = mms_make_msgid(octstr_get_cstr(qf), NULL);
mms_log("Received", from, to, -1, msgid, NULL, h->m->id, "MMSBox",
h->ua, NULL);
if (qf == NULL) {
status = 4000;
mms_error(0, "MM7", h->m->id,
"Failed to write queue entry for received MM7/SOAP DeliverReq message from mmc=%s to MMS Message!",
octstr_get_cstr(h->m->id));
} else {
msgid = mms_make_msgid(octstr_get_cstr(qf), NULL);
mms_log("Received", from, to, -1, msgid, NULL, h->m->id, "MMSBox",
h->ua, NULL);
}
octstr_destroy(linkedid);
octstr_destroy(value);
http_destroy_headers(qh);