summaryrefslogtreecommitdiffstats
path: root/template.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-01-19 15:07:25 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2012-01-19 15:07:25 +0100
commit6db75eb0d2613ab423edfc88222f7a28556a8d03 (patch)
treebc9de33011699880e57e30ea2d2bf6770b54efd6 /template.h
parent7ed586df12b8d2f6f70f21ab08bd99c71850ba6c (diff)
downloadrsyslog-6db75eb0d2613ab423edfc88222f7a28556a8d03.tar.gz
rsyslog-6db75eb0d2613ab423edfc88222f7a28556a8d03.tar.xz
rsyslog-6db75eb0d2613ab423edfc88222f7a28556a8d03.zip
cleanup: different text escape types made more portable
Diffstat (limited to 'template.h')
-rw-r--r--template.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/template.h b/template.h
index 40dbe448..d394809b 100644
--- a/template.h
+++ b/template.h
@@ -37,11 +37,11 @@ struct template {
int tpenElements; /* number of elements in templateEntry list */
struct templateEntry *pEntryRoot;
struct templateEntry *pEntryLast;
- char optFormatEscape; /* in text fields, 0 - do not escape,
- * 1 - escape "the MySQL way"
- * 2 - escape quotes by double quotes,
- * 3 - escape double quotes for JSON.
- */
+ char optFormatEscape; /* in text fields, */
+# define NO_ESCAPE 0 /* 0 - do not escape, */
+# define SQL_ESCAPE 1 /* 1 - escape "the MySQL way" */
+# define STDSQL_ESCAPE 2 /* 2 - escape quotes by double quotes, */
+# define JSON_ESCAPE 3 /* 3 - escape double quotes for JSON. */
/* following are options. All are 0/1 defined (either on or off).
* we use chars because they are faster than bit fields and smaller
* than short...