diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-09-13 11:37:58 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-09-13 11:37:58 +0200 |
commit | 11910c59138332a884ed753401afdd84feeb1832 (patch) | |
tree | 9b1513e55ab4914b0b8df7b6b3d20649bd0d90b9 /grammar/rainerscript.c | |
parent | 66d0561736e927e275d646bfc484cf91a247cfda (diff) | |
download | rsyslog-11910c59138332a884ed753401afdd84feeb1832.tar.gz rsyslog-11910c59138332a884ed753401afdd84feeb1832.tar.bz2 rsyslog-11910c59138332a884ed753401afdd84feeb1832.zip |
Fixing string unescaping (new code from this morning's commit)
Diffstat (limited to 'grammar/rainerscript.c')
-rw-r--r-- | grammar/rainerscript.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grammar/rainerscript.c b/grammar/rainerscript.c index de63f692..e458187c 100644 --- a/grammar/rainerscript.c +++ b/grammar/rainerscript.c @@ -1752,6 +1752,6 @@ unescapeStr(uchar *s, int len) ++iSrc; ++iDst; } + s[iDst] = '\0'; } - s[iDst] = '\0'; } |