From: Jouni Malinen Date: Wed, 2 Jul 2014 10:03:22 +0000 (+0300) Subject: Mark functions static X-Git-Tag: hostap_2_3~178 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f03ac90072235538c7a675e825b2198f3358821;p=thirdparty%2Fhostap.git Mark functions static These functions are not used outside this file. Signed-off-by: Jouni Malinen --- diff --git a/wpa_supplicant/config.c b/wpa_supplicant/config.c index e666c9b36..4dc3e96cd 100644 --- a/wpa_supplicant/config.c +++ b/wpa_supplicant/config.c @@ -2824,7 +2824,7 @@ int wpa_config_set_cred(struct wpa_cred *cred, const char *var, } -char * alloc_int_str(int val) +static char * alloc_int_str(int val) { char *buf; @@ -2836,7 +2836,7 @@ char * alloc_int_str(int val) } -char * alloc_strdup(const char *str) +static char * alloc_strdup(const char *str) { if (str == NULL) return NULL;