summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2014-07-17 15:27:09 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2014-07-17 15:27:09 +0300
commit8e1f5a53201184ff42348f9d4cf230f765d1441d (patch)
tree060b6fcd380cff6818f17d541c368e33d1697d52 /examples
parente1e999ded50db980bf844c479c9fc150e0ed3e5d (diff)
downloadmailutils-8e1f5a53201184ff42348f9d4cf230f765d1441d.tar.gz
mailutils-8e1f5a53201184ff42348f9d4cf230f765d1441d.tar.bz2
Bugfixes.
* examples/echosrv.c: Fix typo. * libmailutils/sockaddr/url.c: Likewise. * mh/mhn.c: Likewise. * mh/folder.c (roll_back): Fix conditional. * THANKS: Update.
Diffstat (limited to 'examples')
-rw-r--r--examples/echosrv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/echosrv.c b/examples/echosrv.c
index 76d6e5b47..cfb7a17a6 100644
--- a/examples/echosrv.c
+++ b/examples/echosrv.c
@@ -140,7 +140,7 @@ create_server (char *arg)
exit (1);
}
- memset (&hints, sizeof(hints), 0);
+ memset (&hints, 0, sizeof(hints));
hints.flags = MU_AH_PASSIVE;
hints.socktype = SOCK_STREAM;
hints.protocol = IPPROTO_TCP;

Return to:

Send suggestions and report system problems to the System administrator.