1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

More 'static' work.

Andrew Bartlett
(This used to be commit 25a09004e8)
This commit is contained in:
Andrew Bartlett 2004-02-08 11:00:25 +00:00
parent 784c631a3a
commit 8a547323d2
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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;