summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--cel/cel_pgsql.c4
-rw-r--r--tests/test_astobj2_weaken.c2
3 files changed, 5 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index 063651091..c2406440c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -27,3 +27,5 @@ defaults.h
makeopts
makeopts.embed_rules
menuselect-tree
+*.sha1
+*.pyc
diff --git a/cel/cel_pgsql.c b/cel/cel_pgsql.c
index bb4215199..2d7f0dfb0 100644
--- a/cel/cel_pgsql.c
+++ b/cel/cel_pgsql.c
@@ -101,7 +101,7 @@ static AST_RWLIST_HEAD_STATIC(psql_columns, columns);
/* Lengthen buffer, if necessary */ \
if (ast_str_strlen(sql) + size + 1 > ast_str_size(sql)) { \
if (ast_str_make_space(&sql, ((ast_str_size(sql) + size + 3) / 512 + 1) * 512) != 0) { \
- ast_log(LOG_ERROR, "Unable to allocate sufficient memory. Insert CDR failed.\n"); \
+ ast_log(LOG_ERROR, "Unable to allocate sufficient memory. Insert CEL '%s:%s' failed.\n", pghostname, table); \
ast_free(sql); \
ast_free(sql2); \
AST_RWLIST_UNLOCK(&psql_columns); \
@@ -114,7 +114,7 @@ static AST_RWLIST_HEAD_STATIC(psql_columns, columns);
do { \
if (ast_str_strlen(sql2) + size + 1 > ast_str_size(sql2)) { \
if (ast_str_make_space(&sql2, ((ast_str_size(sql2) + size + 3) / 512 + 1) * 512) != 0) { \
- ast_log(LOG_ERROR, "Unable to allocate sufficient memory. Insert CDR failed.\n"); \
+ ast_log(LOG_ERROR, "Unable to allocate sufficient memory. Insert CEL '%s:%s' failed.\n", pghostname, table); \
ast_free(sql); \
ast_free(sql2); \
AST_RWLIST_UNLOCK(&psql_columns); \
diff --git a/tests/test_astobj2_weaken.c b/tests/test_astobj2_weaken.c
index b68aeda3a..e53ab7a00 100644
--- a/tests/test_astobj2_weaken.c
+++ b/tests/test_astobj2_weaken.c
@@ -30,7 +30,7 @@
#include "asterisk.h"
-ASTERISK_FILE_VERSION(__FILE__, "$Revision: 419175 $")
+ASTERISK_REGISTER_FILE()
#include "asterisk/utils.h"
#include "asterisk/module.h"