From 8a547323d26a0350eb0a2bfc4d9ebeaade7baacc Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sun, 8 Feb 2004 11:00:25 +0000 Subject: [PATCH] More 'static' work. Andrew Bartlett (This used to be commit 25a09004e8a51eb3192adbb580239427bfee0ec9) --- source3/lib/util_sock.c | 2 +- source3/smbd/server.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c index 5eb9c18b604..594bc121b17 100644 --- a/source3/lib/util_sock.c +++ b/source3/lib/util_sock.c @@ -958,7 +958,7 @@ char *get_peer_addr(int fd) return addr_buf; } -char *get_socket_addr(int fd) +static char *get_socket_addr(int fd) { struct sockaddr sa; struct sockaddr_in *sockin = (struct sockaddr_in *) (&sa); diff --git a/source3/smbd/server.c b/source3/smbd/server.c index 26e4021443a..e2ffe8cc9f7 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -22,7 +22,7 @@ #include "includes.h" -int am_parent = 1; +static int am_parent = 1; /* the last message the was processed */ int last_message = -1;