Compare commits

..

4 Commits

Author SHA1 Message Date
Kevin P. Fleming
c362443bfa remove CVS ignore lists
git-svn-id: https://origsvn.digium.com/svn/libpri/tags/1.2.0-beta2@267 2fbb986a-6c06-0410-b554-c9c1f0a7f128
2005-11-29 18:40:06 +00:00
Kevin P. Fleming
52c6ae7729 remove extraneous svn:executable properties
git-svn-id: https://origsvn.digium.com/svn/libpri/tags/1.2.0-beta2@266 2fbb986a-6c06-0410-b554-c9c1f0a7f128
2005-11-29 18:39:18 +00:00
Kevin P. Fleming
400b3fca62 manual tag renames
git-svn-id: https://origsvn.digium.com/svn/libpri/tags/1.2.0-beta2@262 2fbb986a-6c06-0410-b554-c9c1f0a7f128
2005-11-27 04:16:28 +00:00
Admin Commit
0c747df13b This commit was manufactured by cvs2svn to create tag 'v1-2-0-beta2'.
git-svn-id: https://origsvn.digium.com/svn/libpri/tags/v1-2-0-beta2@258 2fbb986a-6c06-0410-b554-c9c1f0a7f128
2005-10-25 16:59:59 +00:00
3 changed files with 6 additions and 11 deletions

View File

@@ -70,14 +70,11 @@ endif
all: depend $(STATIC_LIBRARY) $(DYNAMIC_LIBRARY)
update:
@if [ -d .svn ]; then \
echo "Updating from Subversion..." ; \
svn update -q; \
elif [ -d CVS ]; then \
@if [ -d CVS ]; then \
echo "Updating from CVS..." ; \
cvs -q -z3 update -Pd; \
else \
echo "Not under version control"; \
echo "Not CVS"; \
fi
install: $(STATIC_LIBRARY) $(DYNAMIC_LIBRARY)

2
q921.c
View File

@@ -338,7 +338,7 @@ static void t200_expire(void *vpri)
if (pri->debug & PRI_DEBUG_Q921_STATE)
pri_message(pri, "-- Retransmitting %d bytes\n", pri->txqueue->len);
if (pri->busy)
q921_rr(pri, 1, 1);
q921_rr(pri, 1, 0);
else {
if (!pri->txqueue->transmitted)
pri_error(pri, "!! Not good - head of queue has not been transmitted yet\n");

8
q931.c
View File

@@ -1382,14 +1382,12 @@ static FUNC_RECV(receive_keypad_facility)
if (ie->len == 0)
return -1;
if (ie->len > (sizeof(call->digitbuf) - 1))
mylen = (sizeof(call->digitbuf) - 1);
if (ie->len > sizeof(call->digitbuf))
mylen = sizeof(call->digitbuf);
else
mylen = ie->len;
memcpy(call->digitbuf, ie->data, mylen);
call->digitbuf[mylen] = 0;
libpri_copy_string(call->digitbuf, (char *) ie->data, mylen);
return 0;
}