From: Jouni Malinen Date: Sun, 15 Feb 2009 12:35:30 +0000 (+0200) Subject: Avoid using #ifdef inside printf string X-Git-Tag: hostap_0_7_0~517 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c511c8c6e097ad434e2ee3b4d08c11ac8b0dbc16;p=thirdparty%2Fhostap.git Avoid using #ifdef inside printf string This makes it easier to use a preprocessor macro for printf. --- diff --git a/wpa_supplicant/main.c b/wpa_supplicant/main.c index 7e9919b32..513a7bf8b 100644 --- a/wpa_supplicant/main.c +++ b/wpa_supplicant/main.c @@ -52,22 +52,22 @@ static void usage(void) " -C = ctrl_interface parameter (only used if -c is not)\n" " -i = interface name\n" " -d = increase debugging verbosity (-dd even more)\n" - " -D = driver name (can be multiple drivers: nl80211,wext)\n" + " -D = driver name (can be multiple drivers: nl80211,wext)\n"); #ifdef CONFIG_DEBUG_FILE - " -f = log output to debug file instead of stdout\n" + printf(" -f = log output to debug file instead of stdout\n"); #endif /* CONFIG_DEBUG_FILE */ - " -g = global ctrl_interface\n" + printf(" -g = global ctrl_interface\n" " -K = include keys (passwords, etc.) in debug output\n" " -t = include timestamp in debug messages\n" " -h = show this help text\n" - " -L = show license (GPL and BSD)\n"); - printf(" -p = driver parameters\n" + " -L = show license (GPL and BSD)\n" + " -p = driver parameters\n" " -P = PID file\n" - " -q = decrease debugging verbosity (-qq even less)\n" + " -q = decrease debugging verbosity (-qq even less)\n"); #ifdef CONFIG_CTRL_IFACE_DBUS - " -u = enable DBus control interface\n" + printf(" -u = enable DBus control interface\n"); #endif /* CONFIG_CTRL_IFACE_DBUS */ - " -v = show version\n" + printf(" -v = show version\n" " -W = wait for a control interface monitor before starting\n" " -N = start describing new interface\n");