]> git.ipfire.org Git - thirdparty/mlmmj.git/commitdiff
Fix formatting of the beginning of some functions.
authorBen Schmidt <none@none>
Wed, 29 Feb 2012 04:55:32 +0000 (15:55 +1100)
committerBen Schmidt <none@none>
Wed, 29 Feb 2012 04:55:32 +0000 (15:55 +1100)
src/prepstdreply.c

index d4762871b947a710a513328c9f4f8662c0634a49..c4bb614d3ac9c6a15b543ec5e3ac5cffbb1751f6 100644 (file)
@@ -294,7 +294,8 @@ void finish_file_lines(file_lines_state *s)
 }
 
 
-static char *filename_token(char *token) {
+static char *filename_token(char *token)
+{
        char *pos;
        if (*token == '\0') return NULL;
        for(pos = token; *pos != '\0'; pos++) {
@@ -311,7 +312,8 @@ static char *filename_token(char *token) {
 }
 
 
-static char *numeric_token(char *token) {
+static char *numeric_token(char *token)
+{
        char *pos;
        if (*token == '\0') return NULL;
        for(pos = token; *pos != '\0'; pos++) {
@@ -556,7 +558,8 @@ text *open_text(const char *listdir, const char *purpose, const char *action,
 }
 
 
-void close_source(text *txt) {
+void close_source(text *txt)
+{
        source *tmp;
        if (txt->src->fd != -1) close(txt->src->fd);
        if (txt->src->prefix != NULL) myfree(txt->src->prefix);
@@ -1503,7 +1506,8 @@ char *get_processed_text_line(text *txt, int headers,
 }
 
 
-void close_text(text *txt) {
+void close_text(text *txt)
+{
        substitution *subst;
        formatted *fmt;
        conditional *cond;