X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Futil%2Fgetopt.c;h=317bc074826aa8f0830789cea3ae76bed5092122;hb=83b19539f4d322b43683f5838b72e9ec2c8e6073;hp=eb79db757b16874a1ec8703750fc8eeca26153fd;hpb=16a6919a9f98ee9fa1fee9dd262906c321004a19;p=oweals%2Fgnunet.git diff --git a/src/util/getopt.c b/src/util/getopt.c index eb79db757..317bc0748 100644 --- a/src/util/getopt.c +++ b/src/util/getopt.c @@ -49,6 +49,10 @@ Copyright (C) 2006 Christian Grothoff #endif #endif +#define LOG(kind,...) GNUNET_log_from (kind, "util", __VA_ARGS__) + +#define LOG_STRERROR(kind,syscall) GNUNET_log_from_strerror (kind, "util", syscall) + #if defined (WIN32) && !defined (__CYGWIN32__) /* It's not Unix, really. See? Capital letters. */ #include @@ -609,16 +613,16 @@ GN_getopt_internal (int argc, char *const *argv, const char *optstring, /* Decode the current option-ARGV-element. */ /* Check whether the ARGV-element is a long option. - * + * * If long_only and the ARGV-element has the form "-f", where f is * a valid short option, don't consider it an abbreviated form of * a long option that starts with f. Otherwise there would be no * way to give the -f short option. - * + * * On the other hand, if there's a long option "fubar" and * the ARGV-element is "-fu", do consider that an abbreviation of * the long option, just like "--fu", and not "-f" with arg "u". - * + * * This distinction seems to be the most useful approach. */ if (longopts != NULL &&