]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-2953
authorDaniel Swarbrick <daniel@seventhsignal.de>
Mon, 3 Jan 2011 11:52:11 +0000 (12:52 +0100)
committerDaniel Swarbrick <daniel@seventhsignal.de>
Mon, 3 Jan 2011 11:52:25 +0000 (12:52 +0100)
src/mod/event_handlers/mod_cdr_pg_csv/mod_cdr_pg_csv.c

index 275fec1396edc6ff2db4d7e6615811436d35cea3..45951f68bfdef9c9bedf30db4308f2dd7ff6b159 100644 (file)
@@ -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 == ',') {