From 2632af929d8c63447a482e16ca92f6d2c5dc1ebf Mon Sep 17 00:00:00 2001 From: Daniel Swarbrick Date: Mon, 3 Jan 2011 12:52:11 +0100 Subject: [PATCH] FS-2953 --- src/mod/event_handlers/mod_cdr_pg_csv/mod_cdr_pg_csv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mod/event_handlers/mod_cdr_pg_csv/mod_cdr_pg_csv.c b/src/mod/event_handlers/mod_cdr_pg_csv/mod_cdr_pg_csv.c index 275fec1396..45951f68bf 100644 --- a/src/mod/event_handlers/mod_cdr_pg_csv/mod_cdr_pg_csv.c +++ b/src/mod/event_handlers/mod_cdr_pg_csv/mod_cdr_pg_csv.c @@ -213,7 +213,7 @@ static switch_status_t save_cdr(const char * const template, const char * const /* * In the expanded vars, replace double quotes (") with single quotes (') - * for corect PostgreSQL syntax, and replace semi-colon with space to + * for correct PostgreSQL syntax, and replace semi-colon with space to * prevent SQL injection attacks. */ values = strdup(cdr); @@ -231,7 +231,7 @@ static switch_status_t save_cdr(const char * const template, const char * const /* * Patch for changing empty strings ('') in the expanded variables to - * Postgresql null + * PostgreSQL null */ for (p = values; *p; ++p) { if (*p == ',') {