From: Christian Grothoff Date: Sat, 25 Mar 2017 20:27:01 +0000 (+0100) Subject: update tutorial to match GETOPT-API changes X-Git-Tag: gnunet-0.11.0rc0~279^2~5 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9cfc671375ef346c3ff40fbcdd7c2c090972072a;p=oweals%2Fgnunet.git update tutorial to match GETOPT-API changes --- 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;