aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_smtp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/plugin_transport_smtp.c')
-rw-r--r--src/transport/plugin_transport_smtp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transport/plugin_transport_smtp.c b/src/transport/plugin_transport_smtp.c
index 705c91b85..1c61f07d7 100644
--- a/src/transport/plugin_transport_smtp.c
+++ b/src/transport/plugin_transport_smtp.c
@@ -667,7 +667,7 @@ inittransport_smtp (struct GNUNET_CoreAPIForTransport * core)
667 stats->create (gettext_noop ("# bytes dropped by SMTP (outgoing)")); 667 stats->create (gettext_noop ("# bytes dropped by SMTP (outgoing)"));
668 } 668 }
669 GNUNET_GC_get_configuration_value_filename (core_api->cfg, "SMTP", "PIPE", &pipename); 669 GNUNET_GC_get_configuration_value_filename (core_api->cfg, "SMTP", "PIPE", &pipename);
670 UNLINK (pipename); 670 unlink (pipename);
671 if (0 != mkfifo (pipename, S_IWUSR | S_IRUSR | S_IWGRP | S_IWOTH)) 671 if (0 != mkfifo (pipename, S_IWUSR | S_IRUSR | S_IWGRP | S_IWOTH))
672 { 672 {
673 GNUNET_GE_LOG_STRERROR (ectx, 673 GNUNET_GE_LOG_STRERROR (ectx,
@@ -722,7 +722,7 @@ donetransport_smtp ()
722 } 722 }
723 GNUNET_mutex_destroy (lock); 723 GNUNET_mutex_destroy (lock);
724 lock = NULL; 724 lock = NULL;
725 UNLINK (pipename); 725 unlink (pipename);
726 GNUNET_free (pipename); 726 GNUNET_free (pipename);
727 pipename = NULL; 727 pipename = NULL;
728 GNUNET_free (email); 728 GNUNET_free (email);