[Freeswitch-svn] [commit] r6523 - in freeswitch/trunk/src: . include

Freeswitch SVN anthm at freeswitch.org
Wed Dec 5 15:23:50 EST 2007


Author: anthm
Date: Wed Dec  5 15:23:50 2007
New Revision: 6523

Modified:
   freeswitch/trunk/src/include/switch_channel.h
   freeswitch/trunk/src/switch_channel.c

Log:
change func to const

Modified: freeswitch/trunk/src/include/switch_channel.h
==============================================================================
--- freeswitch/trunk/src/include/switch_channel.h	(original)
+++ freeswitch/trunk/src/include/switch_channel.h	Wed Dec  5 15:23:50 2007
@@ -455,7 +455,7 @@
   \return the original string if no expansion takes place otherwise a new string that must be freed
   \note it's necessary to test if the return val is the same as the input and free the string if it is not.
 */
-SWITCH_DECLARE(char *) switch_channel_expand_variables(switch_channel_t *channel, char *in);
+SWITCH_DECLARE(char *) switch_channel_expand_variables(switch_channel_t *channel, const char *in);
 SWITCH_DECLARE(char *) switch_channel_build_param_string(switch_channel_t *channel, switch_caller_profile_t *caller_profile, const char *prefix);
 
 /** @} */

Modified: freeswitch/trunk/src/switch_channel.c
==============================================================================
--- freeswitch/trunk/src/switch_channel.c	(original)
+++ freeswitch/trunk/src/switch_channel.c	Wed Dec  5 15:23:50 2007
@@ -1264,12 +1264,12 @@
     memset(c, 0, olen - cpos);\
  }}                           \
 
-SWITCH_DECLARE(char *) switch_channel_expand_variables(switch_channel_t *channel, char *in)
+SWITCH_DECLARE(char *) switch_channel_expand_variables(switch_channel_t *channel, const char *in)
 {
-	char *q, *p, *c = NULL;
+	char *p, *c = NULL;
 	char *data, *indup;
 	size_t sp = 0, len = 0, olen = 0, vtype = 0, br = 0, cpos, block = 128;
-	const char *sub_val = NULL;
+	const char *q, *sub_val = NULL;
 	char *cloned_sub_val = NULL;
 	char *func_val = NULL;
 	int nv = 0;
@@ -1295,7 +1295,7 @@
 	}
 	
 	if (!nv) {
-		return in;
+		return (char *)in;
 	}
 
 	nv = 0;
@@ -1468,7 +1468,7 @@
 						switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Memory Error!\n");
 						free(data);
 						free(indup);
-						return in;
+						return (char *)in;
 					}
 				}
 				if ((nlen = sub_val ? strlen(sub_val) : 0)) {



More information about the Freeswitch-svn mailing list