diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2013-01-16 21:35:42 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2013-01-16 21:35:42 +0000 |
commit | 3a2228f57f033ec5c5d00c4d129cdbff5003c5a0 (patch) | |
tree | 3089731a64b8a95dc146e0dae945627977166a9e /sbin/dhclient/dhcpd.h | |
parent | e4dff2ea1ff39b620b7919177004a1bd3ce9b216 (diff) |
Unrevert last reversion. otto@ pointed out that it wasn't asprintf()
causing a problem, it was accessing uninitialized pointers.
Diffstat (limited to 'sbin/dhclient/dhcpd.h')
-rw-r--r-- | sbin/dhclient/dhcpd.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/dhclient/dhcpd.h b/sbin/dhclient/dhcpd.h index 436ea0f5d1a..019e93edb42 100644 --- a/sbin/dhclient/dhcpd.h +++ b/sbin/dhclient/dhcpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dhcpd.h,v 1.101 2013/01/16 11:02:09 krw Exp $ */ +/* $OpenBSD: dhcpd.h,v 1.102 2013/01/16 21:35:41 krw Exp $ */ /* * Copyright (c) 2004 Henning Brauer <henning@openbsd.org> @@ -270,9 +270,9 @@ extern char *path_dhclient_db; extern int log_perror; extern int routefd; -void dhcpoffer(struct in_addr, struct option_data *); -void dhcpack(struct in_addr, struct option_data *); -void dhcpnak(struct in_addr, struct option_data *); +void dhcpoffer(struct in_addr, struct option_data *, char *); +void dhcpack(struct in_addr, struct option_data *, char *); +void dhcpnak(struct in_addr, struct option_data *, char *); void send_discover(void); void send_request(void); |