From ad71500818e0998fe59ffb6a1530eeea629c1700 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Thu, 14 Oct 2004 09:11:12 +0000 Subject: [PATCH] It seems that some popt releases don't define POPT_TABLEEND, so don't use it. --- options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options.c b/options.c index 087a7ace..39d7ea35 100644 --- a/options.c +++ b/options.c @@ -408,7 +408,7 @@ static struct poptOption long_options[] = { {"ipv4", '4', POPT_ARG_VAL, &default_af_hint, AF_INET, 0, 0 }, {"ipv6", '6', POPT_ARG_VAL, &default_af_hint, AF_INET6, 0, 0 }, #endif - POPT_TABLEEND + {0,0,0,0, 0, 0, 0} }; -- 2.34.1