summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Lyons <tlyons@exim.org>2014-04-15 13:22:46 -0700
committerTodd Lyons <tlyons@exim.org>2014-04-15 13:22:46 -0700
commit6da250931d4b93e2bfe6de4adfc0d884e28a91c9 (patch)
tree0eda2585a9f951802146ed829b138578385e67d6
parent982650eceba2e54d2022f92b142b85fa083d3d13 (diff)
downloadexim4-6da250931d4b93e2bfe6de4adfc0d884e28a91c9.tar.gz
Make dmarc code c89 compliant
-rw-r--r--src/src/dmarc.c4
-rw-r--r--src/src/dmarc.h2
2 files changed, 1 insertions, 5 deletions
diff --git a/src/src/dmarc.c b/src/src/dmarc.c
index 32a1b9678..05de69353 100644
--- a/src/src/dmarc.c
+++ b/src/src/dmarc.c
@@ -455,7 +455,7 @@ int dmarc_write_history_file()
if (spf_response != NULL)
history_buffer = string_sprintf("%sspf %d\n", history_buffer, dmarc_spf_ares_result);
- // history_buffer = string_sprintf("%sspf -1\n", history_buffer);
+ /* history_buffer = string_sprintf("%sspf -1\n", history_buffer); */
history_buffer = string_sprintf("%s%s", history_buffer, dkim_history_buffer);
history_buffer = string_sprintf("%spdomain %s\n", history_buffer, dmarc_used_domain);
@@ -633,5 +633,3 @@ uschar *dmarc_auth_results_header(header_line *from_header, uschar *hostname)
#endif /* EXPERIMENTAL_SPF */
#endif /* EXPERIMENTAL_DMARC */
-
-// vim:sw=2 expandtab
diff --git a/src/src/dmarc.h b/src/src/dmarc.h
index 356a8e423..088d86494 100644
--- a/src/src/dmarc.h
+++ b/src/src/dmarc.h
@@ -60,5 +60,3 @@ void dmarc_send_forensic_report(u_char **);
#define ARES_RESULT_DISCARD 12
#endif /* EXPERIMENTAL_DMARC */
-
-// vim:sw=2 expandtab