[PATCH] Fix compilation warnings in test/smtp-dummy.c.

2011-06-16 Thread Dmitry Kurochkin
* Remove unused variables in main(): buf, bytes and greeting. * Replace return with no value in main() with exit(3). --- test/smtp-dummy.c |5 + 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/test/smtp-dummy.c b/test/smtp-dummy.c index e58d0ad..133d6c4 100644 --- a/test/smt

[PATCH] Fix compilation warnings in test/smtp-dummy.c.

2011-06-21 Thread Carl Worth
On Thu, 16 Jun 2011 14:32:08 +0400, Dmitry Kurochkin wrote: > * Remove unused variables in main(): buf, bytes and greeting. > * Replace return with no value in main() with exit(3). Thanks. I'd notice these occasionally when running the test suite and had meant for some time to fix them. But when

[PATCH] Fix compilation warnings in test/smtp-dummy.c.

2011-06-16 Thread Dmitry Kurochkin
* Remove unused variables in main(): buf, bytes and greeting. * Replace return with no value in main() with exit(3). --- test/smtp-dummy.c |5 + 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/test/smtp-dummy.c b/test/smtp-dummy.c index e58d0ad..133d6c4 100644 --- a/test/smt

Re: [PATCH] Fix compilation warnings in test/smtp-dummy.c.

2011-06-21 Thread Carl Worth
On Thu, 16 Jun 2011 14:32:08 +0400, Dmitry Kurochkin wrote: > * Remove unused variables in main(): buf, bytes and greeting. > * Replace return with no value in main() with exit(3). Thanks. I'd notice these occasionally when running the test suite and had meant for some time to fix them. But when