From: Adam Heath Date: Sun, 7 Jan 2001 20:28:37 +0000 (+0000) Subject: Forgot the status-pipe struct. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1bc6207692d044464a01935a86fa91ba6d926fbd;p=dpkg Forgot the status-pipe struct. --- diff --git a/ChangeLog b/ChangeLog index b3ae3010..c554452a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sun Jan 7 14:27:57 CST 2001 Adam Heath + + * include/dpkg-db.h: Forgot the status-pipe struct. + Fri Jan 5 22:36:24 CST 2001 Adam Heath * main/main.c, lib/dbmodify.c, main/dpkg.8: Add a --status-pipe. diff --git a/include/dpkg-db.h b/include/dpkg-db.h index 3d272ab1..3f81afff 100644 --- a/include/dpkg-db.h +++ b/include/dpkg-db.h @@ -157,6 +157,12 @@ enum modstatdb_rw { msdbrw_noavail= 0100, }; +struct pipef { + int fd; + struct pipef *next; +}; +extern struct pipef *status_pipes; + enum modstatdb_rw modstatdb_init(const char *admindir, enum modstatdb_rw reqrwflags); void modstatdb_note(struct pkginfo *pkg); void modstatdb_shutdown(void);