The following is a sample patch file, like those used to communicate changes to the Apache source code. ============================================================= From: joe@some.where.com (Joe Random) Subject: Read multiple headers from CGI script Affects: util_script.c ChangeLog: Merge multiple headers from CGI script instead of taking last one *** util_script.c.orig Sun Dec 17 14:32:29 1995 --- util_script.c Thu Jan 4 17:51:38 1996 *************** *** 239,245 **** r->status_line = pstrdup(r->pool, l); } else { ! table_set (r->headers_out, w, l); } } } --- 239,245 ---- r->status_line = pstrdup(r->pool, l); } else { ! table_merge (r->headers_out, w, l); } }