miniupnpc/upnpreplyparse.c: Fix compiling with DEBUG

DEBUG only enabled code was forgotten in commit a80c87fb8d
This commit is contained in:
Thomas Bernard 2014-11-05 06:32:43 +01:00
parent c333c3218d
commit 80268b203c
1 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
/* $Id: upnpreplyparse.c,v 1.16 2014/10/27 16:33:19 nanard Exp $ */ /* $Id: upnpreplyparse.c,v 1.17 2014/11/04 22:25:48 nanard Exp $ */
/* MiniUPnP project /* MiniUPnP project
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
* (c) 2006-2013 Thomas Bernard * (c) 2006-2014 Thomas Bernard
* This software is subject to the conditions detailed * This software is subject to the conditions detailed
* in the LICENCE file provided within the distribution */ * in the LICENCE file provided within the distribution */
@ -172,9 +172,9 @@ DisplayNameValueList(char * buffer, int bufsize)
struct NameValueParserData pdata; struct NameValueParserData pdata;
struct NameValue * nv; struct NameValue * nv;
ParseNameValue(buffer, bufsize, &pdata); ParseNameValue(buffer, bufsize, &pdata);
for(nv = pdata.head.lh_first; for(nv = pdata.l_head;
nv != NULL; nv != NULL;
nv = nv->entries.le_next) nv = nv->l_next)
{ {
printf("%s = %s\n", nv->name, nv->value); printf("%s = %s\n", nv->name, nv->value);
} }