Only accept message once

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@46390 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Olle Johansson 2006-10-28 20:27:21 +00:00
parent ca433620a7
commit baf9547d50
1 changed files with 2 additions and 2 deletions

View File

@ -14060,8 +14060,8 @@ static int handle_request_message(struct sip_pvt *p, struct sip_request *req)
if (ast_test_flag(req, SIP_PKT_DEBUG))
ast_verbose("Receiving message!\n");
receive_message(p, req);
}
transmit_response(p, "202 Accepted", req);
} else
transmit_response(p, "202 Accepted", req);
return 1;
}