aboutsummaryrefslogtreecommitdiff
path: root/slirp
diff options
context:
space:
mode:
authorblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2008-10-01 19:06:48 +0000
committerblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2008-10-01 19:06:48 +0000
commit7ca699c8c0b32f2f923b0255128233a492c57da0 (patch)
treef1a3618264f6e68799adf62703574a47afc36515 /slirp
parentf82a3d488a41d706b21c6eb8ada1dfaf8f03fb35 (diff)
Make some variables static
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5376 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'slirp')
-rw-r--r--slirp/bootp.c2
-rw-r--r--slirp/ip_icmp.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/slirp/bootp.c b/slirp/bootp.c
index 27220ee205..750fae3d05 100644
--- a/slirp/bootp.c
+++ b/slirp/bootp.c
@@ -36,7 +36,7 @@ typedef struct {
uint8_t macaddr[6];
} BOOTPClient;
-BOOTPClient bootp_clients[NB_ADDR];
+static BOOTPClient bootp_clients[NB_ADDR];
const char *bootp_filename;
diff --git a/slirp/ip_icmp.c b/slirp/ip_icmp.c
index 2514f9f831..b3d4348bbe 100644
--- a/slirp/ip_icmp.c
+++ b/slirp/ip_icmp.c
@@ -43,7 +43,7 @@ struct icmpstat icmpstat;
/* The message sent when emulating PING */
/* Be nice and tell them it's just a pseudo-ping packet */
-const char icmp_ping_msg[] = "This is a pseudo-PING packet used by Slirp to emulate ICMP ECHO-REQUEST packets.\n";
+static const char icmp_ping_msg[] = "This is a pseudo-PING packet used by Slirp to emulate ICMP ECHO-REQUEST packets.\n";
/* list of actions for icmp_error() on RX of an icmp message */
static const int icmp_flush[19] = {