1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/security/aide/files/patch-aa
Will Andrews 8bd92e6eab Finally add AIDE, a security tool similar to Tripwire but much improved.
PR:		15894
Submitted by:	Cy Schubert <Cy.Schubert@uumail.gov.bc.ca>
2000-07-14 16:11:53 +00:00

12 lines
392 B
Plaintext

--- src/db_file.c.orig Thu Apr 20 05:44:56 2000
+++ src/db_file.c Thu Jul 13 07:39:36 2000
@@ -212,7 +212,7 @@
if((retval=fork())==0){
/* The child process */
close(pipefd[0]);
- conf->db_gzin=gzdopen(fileno(conf->db_in),"rb");
+ conf->db_gzin=gzdopen(fileno((FILE *)conf->db_in),"rb");
/* WARNING This causes weird problems. Don't do it.
fclose(conf->db_in);
*/