diff options
author | Sergey Poznyakoff <gray@gnu.org.ua> | 2020-03-11 17:37:49 +0200 |
---|---|---|
committer | Sergey Poznyakoff <gray@gnu.org.ua> | 2020-03-11 17:37:49 +0200 |
commit | e4c1a19c62fd2ef404e9335f73bbcfb7dae819a0 (patch) | |
tree | 6dda324867f20cb692009c1cff30f0a1441111c5 | |
parent | b8175c413c2c6eb85d8e52cb5fade398ce61f46a (diff) | |
download | ping903-e4c1a19c62fd2ef404e9335f73bbcfb7dae819a0.tar.gz ping903-e4c1a19c62fd2ef404e9335f73bbcfb7dae819a0.tar.bz2 |
Version 0.7v0.7
-rw-r--r-- | NEWS | 9 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/wrapacl.c | 2 |
3 files changed, 10 insertions, 3 deletions
@@ -1,2 +1,2 @@ -Ping903 -- history of user-visible changes. 2020-03-10 +Ping903 -- history of user-visible changes. 2020-03-11 See the end of file for copying conditions. @@ -5,2 +5,9 @@ Please send Ping903 bug reports to <gray@gnu.org> +Version 0.7, 2020-03-11 + +* Fix memory leaks. + +* Improve handling of ICMP replies. + + Version 0.6, 2020-03-10 diff --git a/configure.ac b/configure.ac index 0f4cb69..59a2421 100644 --- a/configure.ac +++ b/configure.ac @@ -17,3 +17,3 @@ AC_PREREQ([2.69]) -AC_INIT([Ping903], [0.6], [gray@gnu.org], +AC_INIT([Ping903], [0.7], [gray@gnu.org], [ping903], diff --git a/src/wrapacl.c b/src/wrapacl.c index db336e4..27e905c 100644 --- a/src/wrapacl.c +++ b/src/wrapacl.c @@ -21,3 +21,3 @@ int -p903_httpd_acl(void *cls, const struct sockaddr *addr, socklen_t addrlen) +p903_httpd_acl(void *cls, const struct sockaddr *addr, socklen_t addrlen) { |