From: Dmitry Kurochkin Date: Thu, 16 Jun 2011 10:32:08 +0000 (+0400) Subject: Fix compilation warnings in test/smtp-dummy.c. X-Git-Tag: debian/0.6_254~19 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=41a094624a079f4a145aba37e8059f8774dfaec6 Fix compilation warnings in test/smtp-dummy.c. * Remove unused variables in main(): buf, bytes and greeting. * Replace return with no value in main() with exit(3). --- diff --git a/test/smtp-dummy.c b/test/smtp-dummy.c index e58d0ad6..133d6c4e 100644 --- a/test/smtp-dummy.c +++ b/test/smtp-dummy.c @@ -99,9 +99,6 @@ process_command (FILE *peer, FILE *output, const char *command) static void do_smtp_to_file (FILE *peer, FILE *output) { - char buf[4096]; - ssize_t bytes; - char greeting[] = "220 localhost smtp-dummy\r\n"; char *line = NULL; size_t line_size; ssize_t line_len; @@ -193,7 +190,7 @@ main (int argc, char *argv[]) if (peer_file == NULL) { fprintf (stderr, "Error: fdopen() failed: %s\n", strerror (errno)); - return; + exit (1); } do_smtp_to_file (peer_file, output);