[libpri-commits] jpeeler: branch dhubbard/servicemessages r731 - /team/dhubbard/servicemessages/
    SVN commits to the libpri project 
    libpri-commits at lists.digium.com
       
    Fri Apr  3 15:10:42 CDT 2009
    
    
  
Author: jpeeler
Date: Fri Apr  3 15:10:38 2009
New Revision: 731
URL: http://svn.digium.com/svn-view/libpri?view=rev&rev=731
Log:
using OR with 0 does not change the other value
Modified:
    team/dhubbard/servicemessages/q931.c
Modified: team/dhubbard/servicemessages/q931.c
URL: http://svn.digium.com/svn-view/libpri/team/dhubbard/servicemessages/q931.c?view=diff&rev=731&r1=730&r2=731
==============================================================================
--- team/dhubbard/servicemessages/q931.c (original)
+++ team/dhubbard/servicemessages/q931.c Fri Apr  3 15:10:38 2009
@@ -2730,7 +2730,7 @@
 int maintenance_service(struct pri *pri, int span, int channel, int changestatus)
 {
 	struct q931_call *c;
-	c = q931_getcall(pri, 0 | 0x8000, 0);
+	c = q931_getcall(pri, 0x8000, 0);
 	if (!c) {
 		return -1;
 	}
    
    
More information about the libpri-commits
mailing list