| Forgot the check for reverselookup. - geomyidae - A small C-based gopherd. | |
| git clone git://bitreich.org/geomyidae/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfri… | |
| Log | |
| Files | |
| Refs | |
| Tags | |
| README | |
| LICENSE | |
| --- | |
| commit f030400cc6670be1087473c91b7d5f8b8868d843 | |
| parent a0495a999191b84a00f2586b7089c99947d0de93 | |
| Author: Christoph Lohmann <[email protected]> | |
| Date: Sun, 27 Feb 2011 12:55:02 +0100 | |
| Forgot the check for reverselookup. | |
| Diffstat: | |
| M Makefile | 2 +- | |
| M 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; | |
| } |