[Freeswitch-svn] [commit] r12880 - freeswitch/trunk/src/mod/applications/mod_limit

FreeSWITCH SVN brian at freeswitch.org
Wed Apr 1 16:38:04 PDT 2009


Author: brian
Date: Wed Apr  1 18:38:04 2009
New Revision: 12880

Log:
This is way more bettah!  

/b



Modified:
   freeswitch/trunk/src/mod/applications/mod_limit/mod_limit.c

Modified: freeswitch/trunk/src/mod/applications/mod_limit/mod_limit.c
==============================================================================
--- freeswitch/trunk/src/mod/applications/mod_limit/mod_limit.c	(original)
+++ freeswitch/trunk/src/mod/applications/mod_limit/mod_limit.c	Wed Apr  1 18:38:04 2009
@@ -74,14 +74,26 @@
  
 static char limit_sql[] =
 	"CREATE TABLE limit_data (\n"
-	"   hostname   VARCHAR(255),\n" "   realm      VARCHAR(255),\n" "   id         VARCHAR(255),\n" "   uuid       VARCHAR(255)\n" ");\n";
+	"   hostname   VARCHAR(255),\n"
+	"   realm      VARCHAR(255),\n"
+	"   id         VARCHAR(255),\n"
+	"   uuid       VARCHAR(255)\n"
+	");\n";
 
 static char db_sql[] =
 	"CREATE TABLE db_data (\n"
-	"   hostname   VARCHAR(255),\n" "   realm      VARCHAR(255),\n" "   data_key   VARCHAR(255),\n" "   data       VARCHAR(255)\n" ");\n";
+	"   hostname   VARCHAR(255),\n"
+	"   realm      VARCHAR(255),\n"
+	"   data_key   VARCHAR(255),\n"
+	"   data       VARCHAR(255)\n"
+	");\n";
 
 static char group_sql[] =
-	"CREATE TABLE group_data (\n" "   hostname   VARCHAR(255),\n" "   groupname  VARCHAR(255),\n" "   url        VARCHAR(255)\n" ");\n";
+	"CREATE TABLE group_data (\n"
+	"   hostname   VARCHAR(255),\n"
+	"   groupname  VARCHAR(255),\n"
+	"   url        VARCHAR(255)\n"
+	");\n";
 
 static switch_status_t limit_execute_sql(char *sql, switch_mutex_t *mutex)
 {



More information about the Freeswitch-svn mailing list