]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
res_pjsip_outbound_registration: Fix build due to removal of transaction. 81/281/1
authorJoshua Colp <jcolp@digium.com>
Wed, 29 Apr 2015 10:17:58 +0000 (07:17 -0300)
committerJoshua Colp <jcolp@digium.com>
Wed, 29 Apr 2015 10:17:58 +0000 (07:17 -0300)
Change-Id: I7a8a7beec3334cec304943f2dd7597eabe2e3150

res/res_pjsip_outbound_registration.c

index df592263b0b4c9dd879b8fae776ab23a564b63a7..0547416cfc439394a0a09b9fd7ca361364435a1e 100644 (file)
@@ -573,13 +573,13 @@ static int handle_registration_response(void *data)
        ast_copy_pj_str(client_uri, &info.client_uri, sizeof(client_uri));
 
        if (response->client_state->status == SIP_REGISTRATION_STOPPED) {
-               ast_debug(1, "Not handling registration response from '%s' (transaction %s). Registration already stopped\n",
-                               server_uri, response->tsx ? response->tsx->obj_name : "<none>");
+               ast_debug(1, "Not handling registration response from server '%s' for client '%s'. Registration already stopped\n",
+                               server_uri, client_uri);
                return 0;
        }
 
-       ast_debug(1, "Processing REGISTER response %d from '%s' (transaction %s)\n",
-                       response->code, server_uri, response->tsx ? response->tsx->obj_name : "<none>");
+       ast_debug(1, "Processing REGISTER response %d from server '%s' for client '%s'\n",
+                       response->code, server_uri, client_uri);
 
        if (!response->client_state->auth_attempted &&
                        (response->code == 401 || response->code == 407)) {