Skip to content

Commit

Permalink
On the trunk:
Browse files Browse the repository at this point in the history
core: adding defines to allow interworking with honggfuzz without
     further patches.



git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1822500 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
icing committed Jan 29, 2018
1 parent 92ac53a commit d7328a0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
-*- coding: utf-8 -*-
Changes with Apache 2.5.1

*) core: adding defines to allow interworking with honggfuzz without
further patches. [Stefan Eissing, Robert Swiecki]

*) mod_slotmem_shm: Add generation number to shm filename to fix races
with graceful restarts. PR 62044.

Expand Down
6 changes: 5 additions & 1 deletion server/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,11 @@ static void usage(process_rec *process)
destroy_and_exit_process(process, 1);
}

int main(int argc, const char * const argv[])
#ifdef HFND_FUZZING_ENTRY_FUNCTION
HFND_FUZZING_ENTRY_FUNCTION(int argc, const char *const *argv)
#else
int main(int argc, const char *const *argv)
#endif
{
char c;
int showcompile = 0, showdirectives = 0;
Expand Down

0 comments on commit d7328a0

Please sign in to comment.