summaryrefslogtreecommitdiff
path: root/pjnath/src/pjnath/stun_msg.c
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2007-03-28 15:49:48 +0000
committerBenny Prijono <bennylp@teluu.com>2007-03-28 15:49:48 +0000
commitb461f076273b3bf78c5f889515cc7541e9d3b701 (patch)
tree1eb57d0d03bc90a07b246e417b0b099cc78ca4ca /pjnath/src/pjnath/stun_msg.c
parent047dad8b9f0e7ef5c92ce4e750bcfbb20d4c4796 (diff)
Updated projects and Makefiles with the new pjnath library
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1111 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjnath/src/pjnath/stun_msg.c')
-rw-r--r--pjnath/src/pjnath/stun_msg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pjnath/src/pjnath/stun_msg.c b/pjnath/src/pjnath/stun_msg.c
index bd32c6ba..4e9c209d 100644
--- a/pjnath/src/pjnath/stun_msg.c
+++ b/pjnath/src/pjnath/stun_msg.c
@@ -455,7 +455,7 @@ PJ_DEF(const char*) pj_stun_get_class_name(unsigned msg_type)
{
if (PJ_STUN_IS_REQUEST(msg_type))
return "request";
- else if (PJ_STUN_IS_RESPONSE(msg_type))
+ else if (PJ_STUN_IS_SUCCESS_RESPONSE(msg_type))
return "success response";
else if (PJ_STUN_IS_ERROR_RESPONSE(msg_type))
return "error response";