diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2014-01-19 04:36:05 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2014-01-19 04:36:05 +0000 |
commit | bb4c2bc45104a1c8a27fc23007fbfb0c01c5e34c (patch) | |
tree | 6a373a8b270dc87a1789579d64c56bff432a2587 /sbin/dhclient/dhcpd.h | |
parent | 00f4dc82e8c518add015b5c948b57efad7f07c2a (diff) |
Rename parse_hardware_param() to parse_ethernet() to reflect what
it actually does.
Diffstat (limited to 'sbin/dhclient/dhcpd.h')
-rw-r--r-- | sbin/dhclient/dhcpd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/dhclient/dhcpd.h b/sbin/dhclient/dhcpd.h index 38a7b2f2f57..ed31b63cfcf 100644 --- a/sbin/dhclient/dhcpd.h +++ b/sbin/dhclient/dhcpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dhcpd.h,v 1.130 2014/01/13 02:38:52 krw Exp $ */ +/* $OpenBSD: dhcpd.h,v 1.131 2014/01/19 04:36:04 krw Exp $ */ /* * Copyright (c) 2004 Henning Brauer <henning@openbsd.org> @@ -235,7 +235,7 @@ void skip_to_semi(FILE *); int parse_semi(FILE *); char *parse_string(FILE *); int parse_ip_addr(FILE *, struct in_addr *); -void parse_hardware_param(FILE *, struct ether_addr *); +void parse_ethernet(FILE *, struct ether_addr *); void parse_lease_time(FILE *, time_t *); void convert_num(unsigned char *, char *, int, int); time_t parse_date(FILE *); |