]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
This is way more bettah!
authorBrian West <brian@freeswitch.org>
Wed, 1 Apr 2009 23:38:04 +0000 (23:38 +0000)
committerBrian West <brian@freeswitch.org>
Wed, 1 Apr 2009 23:38:04 +0000 (23:38 +0000)
/b

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12880 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/applications/mod_limit/mod_limit.c

index bde6e7c713ff40ee797a9d761ec930cc6ec93f53..944f0c08bf1465d981496f1351545617f6429c15 100644 (file)
@@ -74,14 +74,26 @@ typedef struct {
  
 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)
 {