From 72d203b2bd076202db9c211fb3612ff3f4002516 Mon Sep 17 00:00:00 2001 From: aguilerasmiguel <71679623+aguilerasmiguel@users.noreply.github.com> Date: Wed, 5 Aug 2026 12:02:09 -0500 Subject: [PATCH] Set tmp to 1 for SO_REUSEADDR option Initialize tmp variable for SO_REUSEADDR option. --- plugins/ewexport_pasv_plugin/ewexport_pasv_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ewexport_pasv_plugin/ewexport_pasv_plugin.c b/plugins/ewexport_pasv_plugin/ewexport_pasv_plugin.c index 578bfe2..7711f31 100644 --- a/plugins/ewexport_pasv_plugin/ewexport_pasv_plugin.c +++ b/plugins/ewexport_pasv_plugin/ewexport_pasv_plugin.c @@ -108,7 +108,7 @@ MSG_LOGO heartlogo; int main( int argc, char **argv ) { - int tmp; + int tmp = 1;   /* optval for SO_REUSEADDR: must be non-zero */ time_t now; int quit;