From 4c20e50a5d02f07e21801c1ab599653d917b0b54 Mon Sep 17 00:00:00 2001 From: Matthew Fredrickson Date: Thu, 19 Jan 2006 21:15:31 +0000 Subject: [PATCH] Fix the extension bit on our facility IE git-svn-id: https://origsvn.digium.com/svn/libpri/trunk@300 2fbb986a-6c06-0410-b554-c9c1f0a7f128 --- pri_facility.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pri_facility.c b/pri_facility.c index 79056e8..8d93407 100644 --- a/pri_facility.c +++ b/pri_facility.c @@ -897,7 +897,7 @@ static int add_dms100_transfer_ability_apdu(struct pri *pri, q931_call *c) const unsigned char rlt_op_ind = RLT_OPERATION_IND; int compsp = 0; - buffer[i++] = (0x80 | Q932_PROTOCOL_ROSE); + buffer[i++] = (Q932_PROTOCOL_ROSE); /* Note to self: DON'T set the EXT bit */ buffer[i++] = (0x80 | RLT_SERVICE_ID); /* Service Identifier octet */ ASN1_ADD_SIMPLE(comp, COMP_TYPE_INVOKE, buffer, i);