Update of /cvsroot/sblim/indication_helper
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31446
Modified Files:
ind_helper.c
Log Message:
Added debug message for delivery failure.
Index: ind_helper.c
===================================================================
RCS file: /cvsroot/sblim/indication_helper/ind_helper.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- ind_helper.c 17 May 2005 17:20:22 -0000 1.8
+++ ind_helper.c 2 Jun 2005 15:28:35 -0000 1.9
@@ -923,6 +923,12 @@
{
IND_HLP_DEBUG ("Indication delievered.");
}
+ else
+ {
+ char mmsg[50];
+ snprintf(mmsg,50,"Indication NOT delievered, rc=%d",status.rc);
+ IND_HLP_DEBUG (mmsg);
+ }
break; /* Break out of the loop. That way we can do
our job - delievering the indication based
on the filter */
|