about summary refs log tree commit diff
path: root/rfc2045.c
diff options
context:
space:
mode:
Diffstat (limited to 'rfc2045.c')
-rw-r--r--rfc2045.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rfc2045.c b/rfc2045.c
index fec445d..a13608c 100644
--- a/rfc2045.c
+++ b/rfc2045.c
@@ -13,7 +13,7 @@ char textplain[] = "text/plain; charset=US-ASCII";
 int
 blaze822_check_mime(struct message *msg)
 {
-        char *v = blaze822_hdr(msg, "mime-version");
+	char *v = blaze822_hdr(msg, "mime-version");
 	if (v &&
 	    v[0] && v[0] == '1' &&
 	    v[1] && v[1] == '.' &&
@@ -35,7 +35,7 @@ blaze822_mime_body(struct message *msg,
 		*bodyleno = 0;
 		*bodychunko = 0;
 		return 0;
-        }
+	}
 
 	char *ct = blaze822_hdr(msg, "content-type");
 	char *cte = blaze822_hdr(msg, "content-transfer-encoding");