[svn-commits] mvanbaak: trunk r673 - /trunk/res/res_config_mysql.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Oct 8 17:01:01 CDT 2008


Author: mvanbaak
Date: Wed Oct  8 17:01:01 2008
New Revision: 673

URL: http://svn.digium.com/view/asterisk-addons?view=rev&rev=673
Log:
replace PostgreSQL with MySQL in res_config_mysql.c

Modified:
    trunk/res/res_config_mysql.c

Modified: trunk/res/res_config_mysql.c
URL: http://svn.digium.com/view/asterisk-addons/trunk/res/res_config_mysql.c?view=diff&rev=673&r1=672&r2=673
==============================================================================
--- trunk/res/res_config_mysql.c (original)
+++ trunk/res/res_config_mysql.c Wed Oct  8 17:01:01 2008
@@ -494,7 +494,7 @@
 	}
 
 	if (!column) {
-		ast_log(LOG_ERROR, "PostgreSQL RealTime: Updating on column '%s', but that column does not exist within the table '%s'!\n", keyfield, tablename);
+		ast_log(LOG_ERROR, "MySQL RealTime: Updating on column '%s', but that column does not exist within the table '%s'!\n", keyfield, tablename);
 		ast_mutex_unlock(&table->lock);
 		ast_free(sql);
 		ast_free(buf);
@@ -514,7 +514,7 @@
 
 	/* Check that the column exists in the table */
 	if (!(column = find_column(table, newparam))) {
-		ast_log(LOG_ERROR, "PostgreSQL RealTime: Updating on column '%s', but that column does not exist within the table '%s'!\n", newparam, tablename);
+		ast_log(LOG_ERROR, "MySQL RealTime: Updating on column '%s', but that column does not exist within the table '%s'!\n", newparam, tablename);
 		ast_mutex_unlock(&table->lock);
 		ast_free(sql);
 		ast_free(buf);




More information about the svn-commits mailing list