mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-01 03:22:48 -05:00
Add a batch of missing 'static's.
This commit is contained in:
@ -1124,8 +1124,9 @@ Socket *sk_new(SockAddr *addr, int port, bool privport, bool oobinline,
|
||||
return &ret->sock;
|
||||
}
|
||||
|
||||
Socket *sk_newlistener_internal(const char *srcaddr, int port, Plug *plug,
|
||||
bool local_host_only, int orig_address_family)
|
||||
static Socket *sk_newlistener_internal(
|
||||
const char *srcaddr, int port, Plug *plug,
|
||||
bool local_host_only, int orig_address_family)
|
||||
{
|
||||
SOCKET s;
|
||||
SOCKADDR_IN a;
|
||||
@ -1413,7 +1414,7 @@ static void socket_error_callback(void *vs)
|
||||
* The function which tries to send on a socket once it's deemed
|
||||
* writable.
|
||||
*/
|
||||
void try_send(NetSocket *s)
|
||||
static void try_send(NetSocket *s)
|
||||
{
|
||||
while (s->sending_oob || bufchain_size(&s->output_data) > 0) {
|
||||
int nsent;
|
||||
|
@ -728,7 +728,7 @@ wchar_t xlat_uskbd2cyrllic(int ch)
|
||||
return cyrtab[ch&0x7F];
|
||||
}
|
||||
|
||||
int check_compose_internal(int first, int second, int recurse)
|
||||
static int check_compose_internal(int first, int second, int recurse)
|
||||
{
|
||||
|
||||
static const struct {
|
||||
|
Reference in New Issue
Block a user