diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 31821b4d1e3e3d55652897fe4135a5bfa3dba7a7..2ec500e235e3218a9af27ad8a6da95783d6f4833 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -4399,10 +4399,10 @@ static struct sip_pvt *find_call(struct sip_request *req, struct sockaddr_in *si
 		transmit_response_using_temp(callid, sin, 1, intended_method, req, "501 Method Not Implemented");
 		if (option_debug > 1 )
 			ast_log(LOG_DEBUG, "Got a request with unsupported SIP method.\n");
-	} else if (intended_method != SIP_RESPONSE) {
+	} else if (intended_method != SIP_RESPONSE && intended_method != SIP_ACK) {
 		/* This is a request outside of a dialog that we don't know about */
 		transmit_response_using_temp(callid, sin, 1, intended_method, req, "481 Call leg/transaction does not exist");
-		if (option_debug > 1 && intended_method == SIP_RESPONSE)
+		if (option_debug > 1)
 			ast_log(LOG_DEBUG, "That's odd...  Got a request in unknown dialog. Callid %s\n", callid ? callid : "<unknown>");
 	}
 	/* We do not respond to responses for dialogs that we don't know about, we just drop