From: Josef 'Jeff' Sipek Date: Fri, 3 May 2019 14:30:39 +0000 (-0400) Subject: lib: fixup str_append_tabescaped()'s { placement X-Git-Tag: 2.3.9~492 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e0e00d7973be15f8f1a0461b1f55632bf42bb65;p=thirdparty%2Fdovecot%2Fcore.git lib: fixup str_append_tabescaped()'s { placement This makes it consistent with the rest of the file. --- diff --git a/src/lib/strescape.c b/src/lib/strescape.c index 5050055254..99894651ca 100644 --- a/src/lib/strescape.c +++ b/src/lib/strescape.c @@ -132,7 +132,8 @@ void str_append_tabescaped_n(string_t *dest, const unsigned char *src, size_t sr } } -void str_append_tabescaped(string_t *dest, const char *src) { +void str_append_tabescaped(string_t *dest, const char *src) +{ str_append_tabescaped_n(dest, (const unsigned char*)src, strlen(src)); }