geomyidae

A small C-based gopherd. (gopher://bitreich.org/1/scm/geomyidae)
git clone git://r-36.net/geomyidae
Log | Files | Refs | README | LICENSE

commit f030400cc6670be1087473c91b7d5f8b8868d843
parent a0495a999191b84a00f2586b7089c99947d0de93
Author: Christoph Lohmann <20h@r-36.net>
Date:   Sun, 27 Feb 2011 12:55:02 +0100

Forgot the check for reverselookup.

Diffstat:
Makefile | 2+-
ind.c | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,5 +1,5 @@ PROGRAM = geomyidae -VERSION = 0.16 +VERSION = 0.17 PREFIX ?= /usr BINDIR ?= $(PREFIX)/bin diff --git a/ind.c b/ind.c @@ -305,7 +305,7 @@ reverselookup(char *host) } if(rethost == NULL) - rethost = strdup(host); + rethost = gstrdup(host); return rethost; }