X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Ftest-dhcp-client.c;h=991edd4590e16eda721f0d767ff00ef4b5fbb0c2;hb=96fc46e8fdafd6467906e11e0fb493e2b78f2fb5;hp=c15f6939af7bf079c49b866c013195318d02c20c;hpb=d8b30702057c18dac2f35fd766ef5d2a12786eae;p=openvswitch diff --git a/tests/test-dhcp-client.c b/tests/test-dhcp-client.c index c15f6939..991edd45 100644 --- a/tests/test-dhcp-client.c +++ b/tests/test-dhcp-client.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009 Nicira Networks. + * Copyright (c) 2008, 2009, 2010 Nicira Networks. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -23,7 +23,6 @@ #include "command-line.h" #include "dhcp.h" #include "fatal-signal.h" -#include "fault.h" #include "poll-loop.h" #include "util.h" #include "vlog.h" @@ -51,8 +50,6 @@ main(int argc, char *argv[]) int error; set_program_name(argv[0]); - register_fault_handlers(); - vlog_init(); parse_options(argc, argv); argc -= optind; @@ -67,7 +64,7 @@ main(int argc, char *argv[]) ovs_fatal(error, "dhclient_create failed"); } dhclient_init(cli, request_ip.s_addr); - fatal_signal_add_hook(release, cli, true); + fatal_signal_add_hook(release, NULL, cli, true); for (;;) { dhclient_run(cli); @@ -93,7 +90,7 @@ release(void *cli_) } static void -modify_dhcp_request(struct dhcp_msg *msg, void *aux UNUSED) +modify_dhcp_request(struct dhcp_msg *msg, void *aux OVS_UNUSED) { if (vendor_class) { dhcp_msg_put_string(msg, DHCP_CODE_VENDOR_CLASS, vendor_class);