aboutsummaryrefslogtreecommitdiffstats
path: root/epan/resolv.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-03-02 20:51:46 +0000
committerGuy Harris <guy@alum.mit.edu>2002-03-02 20:51:46 +0000
commit52fb615708ad16fdcff9ed92c46791d416a4bdb9 (patch)
tree4bf45b9e83633548134219e06eaffbfacfa08221 /epan/resolv.c
parent761ae95b199c474ebe526077a2dbd36044e2701d (diff)
From Joerg Mayer: get rid of "-Wno-unused" flag in some configure
scripts, and check in changes to add _U_ to some unused arguments (some other should perhaps be used, so we leave the _U_ out so that the warnings serve as a reminder to check those). svn path=/trunk/; revision=4848
Diffstat (limited to 'epan/resolv.c')
-rw-r--r--epan/resolv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/resolv.c b/epan/resolv.c
index a89138d49c..bb75fa1e64 100644
--- a/epan/resolv.c
+++ b/epan/resolv.c
@@ -1,7 +1,7 @@
/* resolv.c
* Routines for network object lookup
*
- * $Id: resolv.c,v 1.21 2002/01/30 08:46:29 guy Exp $
+ * $Id: resolv.c,v 1.22 2002/03/02 20:48:10 guy Exp $
*
* Laurent Deniel <deniel@worldnet.fr>
*
@@ -252,7 +252,7 @@ static guchar *serv_name_lookup(guint port, port_type proto)
jmp_buf hostname_env;
-static void abort_network_query(int sig)
+static void abort_network_query(int sig _U_)
{
longjmp(hostname_env, 1);
}