]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Make local functions static to make gcc a little happier
authorhno <>
Thu, 19 Jul 2007 09:04:47 +0000 (09:04 +0000)
committerhno <>
Thu, 19 Jul 2007 09:04:47 +0000 (09:04 +0000)
helpers/basic_auth/getpwnam/getpwnam_auth.c

index 9e5d03aac468311597c8b524904a465e6080684e..fae0eaebb0ce660a72db7b322854a022c1e98f78 100644 (file)
@@ -53,7 +53,7 @@
 #define ERR    "ERR\n"
 #define OK     "OK\n"
 
-int 
+static int 
 passwd_auth(char *user, char *passwd)
 {
     struct passwd *pwd;
@@ -70,7 +70,7 @@ passwd_auth(char *user, char *passwd)
 }
 
 #if HAVE_SHADOW_H
-int 
+static int 
 shadow_auth(char *user, char *passwd)
 {
     struct spwd *pwd;