FS-3736 --resolve

NOTE: This patch might affect xml_cdr, so better check if the output is to your liking after this commit
This commit is contained in:
Marc Olivier Chouinard 2011-12-16 09:22:05 -05:00
parent e30b03ab78
commit a44bd60f4c
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@
<!-- true or false if a leg files are prefixed "a_" --> <!-- true or false if a leg files are prefixed "a_" -->
<param name="prefix-a-leg" value="true"/> <param name="prefix-a-leg" value="true"/>
<!-- encode the post data may be 'true' for url encoding, 'false' for no encoding or 'base64' for base64 encoding --> <!-- encode the post data may be 'true' for url encoding, 'false' for no encoding, 'base64' for base64 encoding or 'textxml' for text/xml -->
<param name="encode" value="true"/> <param name="encode" value="true"/>
<!-- optional: set to true to disable Expect: 100-continue lighttpd requires this setting --> <!-- optional: set to true to disable Expect: 100-continue lighttpd requires this setting -->

View File

@ -38,7 +38,7 @@
#define ENCODING_NONE 0 #define ENCODING_NONE 0
#define ENCODING_DEFAULT 1 #define ENCODING_DEFAULT 1
#define ENCODING_BASE64 2 #define ENCODING_BASE64 2
#define ENCODING_TEXTXML 2 #define ENCODING_TEXTXML 3
static struct { static struct {
char *cred; char *cred;