[Asterisk-cvs] libpri q931.c,1.131,1.132
kpfleming at lists.digium.com
kpfleming at lists.digium.com
Wed Jun 22 15:27:06 CDT 2005
Update of /usr/cvsroot/libpri
In directory mongoose.digium.com:/tmp/cvs-serv15079
Modified Files:
q931.c
Log Message:
correct improperly applied patch from bug 4405 (bug #4573)
Index: q931.c
===================================================================
RCS file: /usr/cvsroot/libpri/q931.c,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -d -r1.131 -r1.132
--- q931.c 21 Jun 2005 22:47:39 -0000 1.131
+++ q931.c 22 Jun 2005 19:27:43 -0000 1.132
@@ -3084,10 +3084,13 @@
case Q931_CALL_STATE_RESTART:
case Q931_CALL_STATE_RESTART_REQUEST:
/* sent RESTART */
- pri_error(pri, "q931_hangup shouldn't be called in this state, ourstate %s, peerstate %s\n",c->ourcallstate,callstate2str(c->ourcallstate),callstate2str(c->peercallstate));
+ pri_error(pri, "q931_hangup shouldn't be called in this state, ourstate %s, peerstate %s\n",callstate2str(c->ourcallstate),callstate2str(c->peercallstate));
break;
default:
- pri_error(pri, "We're not yet handling hanging up when our state is %d, contact support at digium.com, ourstate %s, peerstate %s\n",callstate2str(c->ourcallstate),callstate2str(c->peercallstate));
+ pri_error(pri, "We're not yet handling hanging up when our state is %d, contact support at digium.com, ourstate %s, peerstate %s\n",
+ c->ourcallstate,
+ callstate2str(c->ourcallstate),
+ callstate2str(c->peercallstate));
return -1;
}
/* we did handle hangup properly at this point */
More information about the svn-commits
mailing list