From: markus schnalke <meillo@marmaro.de>
Date: Mon, 30 Apr 2012 14:16:08 +0000 (+0200)
Subject: Code style: Fixed indent and comment style.
X-Git-Tag: mmh-thesis-end~76
X-Git-Url: http://git.marmaro.de/?a=commitdiff_plain;h=264f6e648f566f8efaa0188fb6a9e4908329d6d6;p=mmh

Code style: Fixed indent and comment style.
---

diff --git a/uip/mhparse.c b/uip/mhparse.c
index dc8e380b..af460e6a 100644
--- a/uip/mhparse.c
+++ b/uip/mhparse.c
@@ -1536,7 +1536,7 @@ openBase64(CT ct, char **file)
 	cp = context_find(buffer);
 	if (cp == NULL || *cp == '\0') {
 		snprintf(buffer, sizeof(buffer), "%s-suffix-%s", invo_name,
-			  ci->ci_type);
+				ci->ci_type);
 		cp = context_find(buffer);
 	}
 	if (cp != NULL && *cp != '\0') {
@@ -1752,8 +1752,10 @@ openQuoted(CT ct, char **file)
 	}
 	if (cp != NULL && *cp != '\0') {
 		if (ce->ce_unlink) {
-			// Temporary file already exists, so we rename to
-			// version with extension.
+			/*
+			** Temporary file already exists, so we rename to
+			** version with extension.
+			*/
 			char *file_org = strdup(ce->ce_file);
 			ce->ce_file = add(cp, ce->ce_file);
 			if (rename(file_org, ce->ce_file)) {
@@ -1962,7 +1964,7 @@ open7Bit(CT ct, char **file)
 	cp = context_find(buffer);
 	if (cp == NULL || *cp == '\0') {
 		snprintf(buffer, sizeof(buffer), "%s-suffix-%s", invo_name,
-			ci->ci_type);
+				ci->ci_type);
 		cp = context_find(buffer);
 	}
 	if (cp != NULL && *cp != '\0') {