MINOR: backends: Change get_server_sh/get_server_uh into private function
diff --git a/include/proto/backend.h b/include/proto/backend.h
index 39a7f3d..430a6a1 100644
--- a/include/proto/backend.h
+++ b/include/proto/backend.h
@@ -42,8 +42,6 @@
int be_downtime(struct proxy *px);
void recount_servers(struct proxy *px);
void update_backend_weight(struct proxy *px);
-struct server *get_server_sh(struct proxy *px, const char *addr, int len);
-struct server *get_server_uh(struct proxy *px, char *uri, int uri_len);
int be_lastsession(const struct proxy *be);
/* Returns number of usable servers in backend */
diff --git a/src/backend.c b/src/backend.c
index b0e0332..c45a74e 100644
--- a/src/backend.c
+++ b/src/backend.c
@@ -152,7 +152,7 @@
* If any server is found, it will be returned. If no valid server is found,
* NULL is returned.
*/
-struct server *get_server_sh(struct proxy *px, const char *addr, int len)
+static struct server *get_server_sh(struct proxy *px, const char *addr, int len)
{
unsigned int h, l;
@@ -190,7 +190,7 @@
* algorithm out of a tens because it gave him the best results.
*
*/
-struct server *get_server_uh(struct proxy *px, char *uri, int uri_len)
+static struct server *get_server_uh(struct proxy *px, char *uri, int uri_len)
{
unsigned int hash = 0;
int c;