From: Lennart Poettering Date: Mon, 11 Jun 2007 15:55:07 +0000 (+0000) Subject: fix compilation when compiled with DBM instead of gdbm. Patch supplied from Padraig... X-Git-Url: http://git.meshlink.io/?a=commitdiff_plain;h=5b3c40ea55bf198f711d257588fe879203897337;p=catta fix compilation when compiled with DBM instead of gdbm. Patch supplied from Padraig O'Briain. (rel #145) git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1484 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe --- diff --git a/avahi-utils/stdb.c b/avahi-utils/stdb.c index a420364..b7a5ed3 100644 --- a/avahi-utils/stdb.c +++ b/avahi-utils/stdb.c @@ -190,7 +190,7 @@ char *stdb_getent(void) { key = gdbm_nextkey(gdbm_file, key); #endif #ifdef HAVE_DBM - key = dbm_nextkey(dbm_file, key); + key = dbm_nextkey(dbm_file); #endif }