]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/deb/dpkgpm.h
Fix a segfault in the version merger introduced in the previous patch:
[apt.git] / apt-pkg / deb / dpkgpm.h
index 0c266605a632dd3ff95206c162ae15a745b66f6f..330c788a25319fc74e5cea393946bebfe49b893f 100644 (file)
@@ -29,7 +29,9 @@ class pkgDPkgPM : public pkgPackageManager
    char dpkgbuf[1024];
    int dpkgbuf_pos;
    FILE *term_out;
    char dpkgbuf[1024];
    int dpkgbuf_pos;
    FILE *term_out;
-   
+   FILE *history_out;
+   string dpkg_error;
+
    protected:
 
    // progress reporting
    protected:
 
    // progress reporting
@@ -53,7 +55,7 @@ class pkgDPkgPM : public pkgPackageManager
   
    struct Item
    {
   
    struct Item
    {
-      enum Ops {Install, Configure, Remove, Purge, ConfigurePending} Op;
+      enum Ops {Install, Configure, Remove, Purge, ConfigurePending, TriggersPending} Op;
       string File;
       PkgIterator Pkg;
       Item(Ops Op,PkgIterator Pkg,string File = "") : Op(Op),
       string File;
       PkgIterator Pkg;
       Item(Ops Op,PkgIterator Pkg,string File = "") : Op(Op),
@@ -66,6 +68,7 @@ class pkgDPkgPM : public pkgPackageManager
    // Helpers
    bool RunScriptsWithPkgs(const char *Cnf);
    bool SendV2Pkgs(FILE *F);
    // Helpers
    bool RunScriptsWithPkgs(const char *Cnf);
    bool SendV2Pkgs(FILE *F);
+   void WriteHistoryTag(string tag, string value);
 
    // dpkg log
    bool OpenLog();
 
    // dpkg log
    bool OpenLog();