From 3ea2ea8cf1e1163efa56efa4df19bc32d857f88d Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Mon, 13 Feb 2006 23:07:56 +0000 Subject: [PATCH] Merged revisions 296,306 via svnmerge from https://origsvn.digium.com/svn/libpri/branches/1.2 ........ r296 | russell | 2006-01-17 22:53:47 -0600 (Tue, 17 Jan 2006) | 2 lines remove old ChangeLog ... it will now only be in the tags ........ r306 | kpfleming | 2006-02-13 17:06:02 -0600 (Mon, 13 Feb 2006) | 2 lines suppress annoying message about unsupported components in facility messages ........ git-svn-id: https://origsvn.digium.com/svn/libpri/trunk@308 2fbb986a-6c06-0410-b554-c9c1f0a7f128 --- ChangeLog | 16 ---------------- pri_facility.c | 4 ++++ 2 files changed, 4 insertions(+), 16 deletions(-) delete mode 100644 ChangeLog diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index 04fd55e..0000000 --- a/ChangeLog +++ /dev/null @@ -1,16 +0,0 @@ -libpri 0.3.0 --- Fix talking to switch --- Add pri dump --- Add test application --- Fix strncpy stuff -libpri 0.1.2 --- Added PRI_EVENT_HANGUP_ACK so you can know when the disconnect was -acknowledged - -libpri 0.1.1 --- Added PRI_DEBUG_Q931_ANOMALY flag so that certain non-error-related -messages would not be output unless specifically desired. - -libpri 0.1.0 - -- Initial release - diff --git a/pri_facility.c b/pri_facility.c index feaf816..777429f 100644 --- a/pri_facility.c +++ b/pri_facility.c @@ -1552,13 +1552,17 @@ int rose_invoke_decode(struct pri *pri, q931_call *call, unsigned char *data, in do { /* Invoke ID stuff */ GET_COMPONENT(comp, i, vdata, len); +#if 0 CHECK_COMPONENT(comp, INVOKE_IDENTIFIER, "Don't know what to do if first ROSE component is of type 0x%x\n"); +#endif invokeid = comp; NEXT_COMPONENT(comp, i); /* Operation Tag */ GET_COMPONENT(comp, i, vdata, len); +#if 0 CHECK_COMPONENT(comp, ASN1_INTEGER, "Don't know what to do if second ROSE component is of type 0x%x\n"); +#endif operationid = comp; ASN1_GET_INTEGER(comp, operation_tag); NEXT_COMPONENT(comp, i);