]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib: fixup str_append_tabescaped()'s { placement
authorJosef 'Jeff' Sipek <jeff.sipek@open-xchange.com>
Fri, 3 May 2019 14:30:39 +0000 (10:30 -0400)
committerAki Tuomi <aki.tuomi@open-xchange.com>
Mon, 20 May 2019 06:46:32 +0000 (06:46 +0000)
This makes it consistent with the rest of the file.

src/lib/strescape.c

index 505005525439609ca0f76bd29ac75a3d7febb6e7..99894651ca90025e50ee7abca56cf72ab0d3f4b4 100644 (file)
@@ -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));
 }