aboutsummaryrefslogtreecommitdiff
path: root/src/dns/gnunet-dns-redirector.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-03-25 21:25:44 +0100
committerChristian Grothoff <christian@grothoff.org>2017-03-25 21:25:44 +0100
commit5a7cef0202631204485cbcb1e36671e4321a936f (patch)
treeff3d10ac71f9284f18be7c33939f3438071e15c4 /src/dns/gnunet-dns-redirector.c
parent2ad934742422ecb63fe3fafdc8c73d067a9e2fb7 (diff)
downloadgnunet-5a7cef0202631204485cbcb1e36671e4321a936f.tar.gz
gnunet-5a7cef0202631204485cbcb1e36671e4321a936f.zip
rename GNUNET_GETOPT functions to achieve better consistency
Diffstat (limited to 'src/dns/gnunet-dns-redirector.c')
-rw-r--r--src/dns/gnunet-dns-redirector.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dns/gnunet-dns-redirector.c b/src/dns/gnunet-dns-redirector.c
index 0469af732..44d3d0b6c 100644
--- a/src/dns/gnunet-dns-redirector.c
+++ b/src/dns/gnunet-dns-redirector.c
@@ -231,19 +231,19 @@ int
231main (int argc, char *const *argv) 231main (int argc, char *const *argv)
232{ 232{
233 struct GNUNET_GETOPT_CommandLineOption options[] = { 233 struct GNUNET_GETOPT_CommandLineOption options[] = {
234 GNUNET_GETOPT_OPTION_STRING ('4', 234 GNUNET_GETOPT_option_string ('4',
235 "ipv4", 235 "ipv4",
236 "IPV4", 236 "IPV4",
237 gettext_noop ("set A records"), 237 gettext_noop ("set A records"),
238 &n4), 238 &n4),
239 239
240 GNUNET_GETOPT_OPTION_STRING ('6', 240 GNUNET_GETOPT_option_string ('6',
241 "ipv4", 241 "ipv4",
242 "IPV6", 242 "IPV6",
243 gettext_noop ("set AAAA records"), 243 gettext_noop ("set AAAA records"),
244 &n6), 244 &n6),
245 245
246 GNUNET_GETOPT_OPTION_VERBOSE (&verbosity), 246 GNUNET_GETOPT_option_verbose (&verbosity),
247 GNUNET_GETOPT_OPTION_END 247 GNUNET_GETOPT_OPTION_END
248 }; 248 };
249 249