Procházet zdrojové kódy

libdpkg: Switch ‘obsolete’ variable to be a bool in f_conffiles()

Guillem Jover před 15 roky
rodič
revize
4100cc474b
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      lib/dpkg/fields.c

+ 2 - 1
lib/dpkg/fields.c

@@ -275,7 +275,8 @@ f_conffiles(struct pkginfo *pigp, struct pkgbin *pifp,
   static const char obsolete_str[]= "obsolete";
   struct conffile **lastp, *newlink;
   const char *endent, *endfn, *hashstart;
-  int c, namelen, hashlen, obsolete;
+  int c, namelen, hashlen;
+  bool obsolete;
   char *newptr;
 
   lastp= &pifp->conffiles;