From 9cfc671375ef346c3ff40fbcdd7c2c090972072a Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Sat, 25 Mar 2017 21:27:01 +0100 Subject: [PATCH] update tutorial to match GETOPT-API changes --- doc/gnunet-c-tutorial.tex | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/gnunet-c-tutorial.tex b/doc/gnunet-c-tutorial.tex index 0f82a2e4b..3232dc81c 100644 --- a/doc/gnunet-c-tutorial.tex +++ b/doc/gnunet-c-tutorial.tex @@ -644,7 +644,7 @@ run (void *cls, int main (int argc, char *const *argv) { - static const struct GNUNET_GETOPT_CommandLineOption options[] = { + struct GNUNET_GETOPT_CommandLineOption options[] = { GNUNET_GETOPT_OPTION_END }; return (GNUNET_OK == @@ -669,13 +669,13 @@ static char *string_option; static int a_flag; // ... - static const struct GNUNET_GETOPT_CommandLineOption options[] = { - {'s', "name", "SOMESTRING", - gettext_noop ("text describing the string_option NAME"), 1, - &GNUNET_GETOPT_set_string, &string_option}, - {'f', "flag", NULL, - gettext_noop ("text describing the flag option"), 0, - &GNUNET_GETOPT_set_one, &a_flag}, + struct GNUNET_GETOPT_CommandLineOption options[] = { + GNUNET_GETOPT_option_string ('s', "name", "SOMESTRING", + gettext_noop ("text describing the string_option NAME"), + &string_option}, + GNUNET_GETOPT_option_flag ('f', "flag", + gettext_noop ("text describing the flag option"), + &a_flag), GNUNET_GETOPT_OPTION_END }; string_option = NULL; -- 2.25.1