Unexport sock_set_rx_timeout
authorJoseph C. Lehner <joseph.c.lehner@gmail.com>
Fri, 5 Feb 2016 16:10:36 +0000 (18:10 +0200)
committerJoseph C. Lehner <joseph.c.lehner@gmail.com>
Fri, 5 Feb 2016 16:38:26 +0000 (18:38 +0200)
nmrpd.h
tftp.c

diff --git a/nmrpd.h b/nmrpd.h
index 71d37c40041bc58c7008807b8f36a582efb9c7c1..befa93234c3e58d6cd93c2aaba91accf4fa4cfdf 100644 (file)
--- a/nmrpd.h
+++ b/nmrpd.h
@@ -66,7 +66,6 @@ struct nmrpd_args {
        int force_root;
 };
 
-int sock_set_rx_timeout(int sock, unsigned msec);
 int tftp_put(struct nmrpd_args *args);
 int nmrp_do(struct nmrpd_args *args);
 
diff --git a/tftp.c b/tftp.c
index a9aac18181009395d7d0081b232c5261f2fb4350..d26303524aa722132158aa6947a20d620a4744f4 100644 (file)
--- a/tftp.c
+++ b/tftp.c
@@ -182,7 +182,7 @@ static ssize_t tftp_sendto(int sock, char *pkt, size_t len,
        return sent;
 }
 
-int sock_set_rx_timeout(int fd, unsigned msec)
+static int sock_set_rx_timeout(int fd, unsigned msec)
 {
        struct timeval tv;