Skip to content

Commit

Permalink
Fix incorrect exit code when --verify-config returns successfully
Browse files Browse the repository at this point in the history
Ticket #83
  • Loading branch information
PherricOxide committed Sep 11, 2013
1 parent 411c772 commit fe45877
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion honeyd.c
Expand Up @@ -3870,7 +3870,7 @@ main(int argc, char *argv[])
if (honeyd_verify_config)
{
syslog(LOG_ERR, "parsing configuration file successful");
exit(EXIT_FAILURE);
exit(EXIT_SUCCESS);
}

//Start sending DHCP discoveries that have been queue'd up
Expand Down

0 comments on commit fe45877

Please sign in to comment.