- revert last commit now libzypp is fixed, make nkeys and nschemata signed (for consi...
authorMichael Schroeder <mls@suse.de>
Tue, 10 Jan 2012 13:28:41 +0000 (14:28 +0100)
committerMichael Schroeder <mls@suse.de>
Tue, 10 Jan 2012 13:28:41 +0000 (14:28 +0100)
src/repodata.h
src/transaction.h

index f091206..1761550 100644 (file)
@@ -60,11 +60,11 @@ typedef struct _Repodata {
   int error;                   /* corrupt solv file */
 
   Repokey *keys;               /* keys, first entry is always zero */
-  unsigned int nkeys;          /* length of keys array */
+  int nkeys;                   /* length of keys array */
   unsigned char keybits[32];   /* keyname hash */
 
   Id *schemata;                        /* schema -> offset into schemadata */
-  unsigned int nschemata;      /* number of schemata */
+  int nschemata;               /* number of schemata */
   Id *schemadata;              /* schema storage */
   unsigned int schemadatalen;   /* schema storage size */
   Id *schematahash;            /* unification helper */
index 49518ad..2b55331 100644 (file)
@@ -30,12 +30,11 @@ typedef struct _Transaction {
 
   Queue steps;                 /* the transaction steps */
 
-  Map noobsmap;                        /* public for now */
-
 #ifdef LIBSOLV_INTERNAL
   Queue transaction_info;
   Id *transaction_installed;
   Map transactsmap;
+  Map noobsmap;
 
   struct _TransactionOrderdata *orderdata;
 #endif