diff options
author | "Vladimir N. Oleynik" | 2005-09-23 10:44:02 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" | 2005-09-23 10:44:02 +0000 |
commit | 53ad366fe73b3598af6cfd133357a9ceb643c167 (patch) | |
tree | 011af6ec36a37ee0b4228bc21eae8ac517361ad7 /networking | |
parent | b6f71645f452572640a0529fb091f71cf8a30c3e (diff) | |
download | busybox-53ad366fe73b3598af6cfd133357a9ceb643c167.zip busybox-53ad366fe73b3598af6cfd133357a9ceb643c167.tar.gz |
remove 1 exported
Diffstat (limited to 'networking')
-rw-r--r-- | networking/udhcp/files.c | 2 | ||||
-rw-r--r-- | networking/udhcp/files.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/networking/udhcp/files.c b/networking/udhcp/files.c index 33cd25a..40e68a0 100644 --- a/networking/udhcp/files.c +++ b/networking/udhcp/files.c @@ -105,7 +105,7 @@ struct option_set *find_option(struct option_set *opt_list, char code) /* add an option to the opt_list */ -void attach_option(struct option_set **opt_list, struct dhcp_option *option, char *buffer, int length) +static void attach_option(struct option_set **opt_list, struct dhcp_option *option, char *buffer, int length) { struct option_set *existing, *new, **curr; diff --git a/networking/udhcp/files.h b/networking/udhcp/files.h index 4af61b0..03acee2 100644 --- a/networking/udhcp/files.h +++ b/networking/udhcp/files.h @@ -15,6 +15,5 @@ void write_leases(void); void read_leases(const char *file); struct option_set *find_option(struct option_set *opt_list, char code); -void attach_option(struct option_set **opt_list, struct dhcp_option *option, char *buffer, int length); #endif |