[svn-commits] mattf: trunk r17 - /trunk/isup.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Fri Aug 18 09:04:11 MST 2006


Author: mattf
Date: Fri Aug 18 11:04:11 2006
New Revision: 17

URL: http://svn.digium.com/view/libss7?rev=17&view=rev
Log:
Make sure we don't do a warning on optional parameters.

Modified:
    trunk/isup.c

Modified: trunk/isup.c
URL: http://svn.digium.com/view/libss7/trunk/isup.c?rev=17&r1=16&r2=17&view=diff
==============================================================================
--- trunk/isup.c (original)
+++ trunk/isup.c Fri Aug 18 11:04:11 2006
@@ -883,7 +883,7 @@
 			res = do_parm(ss7, c, mh->type, optparm->type, mh->data + offset, len, PARM_TYPE_OPTIONAL, 0); /* Find out what else we need to add */
 
 			if (res < 0) {
-				ss7_error(ss7, "Unhandled optional parameter 0x%x '%s'\n", optparm->type, param2str(optparm->type));
+				ss7_message(ss7, "Unhandled optional parameter 0x%x '%s'\n", optparm->type, param2str(optparm->type));
 				isup_dump_buffer(ss7, optparm->data, optparm->len);
 				res = optparm->len + 2;
 			}



More information about the svn-commits mailing list