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);