From 9c35744fd73a882d59022d3d3befc8dae77eca1d Mon Sep 17 00:00:00 2001 From: sjing Date: Thu, 9 Jan 2014 22:14:55 -0500 Subject: [PATCH] Fix for bug 3815 Last fix results in "makedhcp -n" not working, so re-fix it. --- xCAT-server/lib/xcat/plugins/dhcp.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/dhcp.pm b/xCAT-server/lib/xcat/plugins/dhcp.pm index 9e66d70ce..617f4557b 100755 --- a/xCAT-server/lib/xcat/plugins/dhcp.pm +++ b/xCAT-server/lib/xcat/plugins/dhcp.pm @@ -871,7 +871,7 @@ sub check_options # Exit if the packet has been preprocessed # Comment this line to make sure check_options can be processed on service node. - if ($req->{_xcatpreprocessed}->[0] == 1) { return [$req]; } + if ($req->{_xcatpreprocessed}->[0] == 1) { return 0; } # display the usage if -h if ($opt->{h})