From abcc8901c087c4eac4b1b88fd6f8d8a97a2ab85b Mon Sep 17 00:00:00 2001 From: Todd Lyons Date: Tue, 16 Apr 2013 13:25:59 -0700 Subject: [PATCH] Remove static from local variable declaration. --- src/src/dmarc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/src/dmarc.c b/src/src/dmarc.c index 825c2aa99..ea91fee9f 100644 --- a/src/src/dmarc.c +++ b/src/src/dmarc.c @@ -401,7 +401,7 @@ int dmarc_process() { int dmarc_write_history_file() { - static int history_file_fd; + int history_file_fd; ssize_t written_len; int tmp_ans; u_char **rua; /* aggregate report addressees */ -- 2.30.2