]> err.no Git - dpkg/commitdiff
Forgot the status-pipe struct.
authorAdam Heath <doogie@debian.org>
Sun, 7 Jan 2001 20:28:37 +0000 (20:28 +0000)
committerAdam Heath <doogie@debian.org>
Sun, 7 Jan 2001 20:28:37 +0000 (20:28 +0000)
ChangeLog
include/dpkg-db.h

index b3ae3010490193adef7b40695ed11c16fa4c58de..c554452ab36ecc6ff7f102bea4aed9bc7257a1e6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Jan  7 14:27:57 CST 2001 Adam Heath <doogie@debian.org>
+
+  * include/dpkg-db.h:  Forgot the status-pipe struct.
+
 Fri Jan  5 22:36:24 CST 2001 Adam Heath <doogie@debian.org>
 
   * main/main.c, lib/dbmodify.c, main/dpkg.8: Add a --status-pipe.
index 3d272ab1fe401738725c443edb1856a54eaa791a..3f81affff6cb2146d53c2bd372c758455a81d37b 100644 (file)
@@ -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);