]> git.draconx.ca Git - upkg.git/blobdiff - libupkg.c
Remove redundant index field from upkg_name and fix some types.
[upkg.git] / libupkg.c
index b932d861f0a52df6faccbdf7e0f6fe5800acc858..118e04f40631819ee72eb9a8870299156d045eb9 100644 (file)
--- a/libupkg.c
+++ b/libupkg.c
@@ -6,7 +6,7 @@
 #include "pack.h"
 
 struct upkg_name {
-       unsigned long index, flags;
+       unsigned long flags;
        char *name;
 };
 
@@ -19,16 +19,6 @@ struct upkg_private {
        unsigned char guid[16];
 };
 
-static int namecmp(const void *_a, const void *_b, void *_pkg)
-{
-       const struct upkg_name *a = _a, *b = _b;
-       if (a->index < b->index)
-               return -1;
-       if (a->index > b->index)
-               return -1;
-       return 0;
-}
-
 static long decode_index(unsigned char *bytes)
 {
        long val = 0;
@@ -73,7 +63,7 @@ static struct upkg *init_upkg(unsigned char hdr[static UPKG_HDR_SIZE])
 
 static int pkg_init_names(struct upkg *pkg)
 {
-       size_t rc, nbuf = 0, len;
+       size_t rc, len, nbuf = 0;
        unsigned long index = 0;
        char buf[512];
 
@@ -86,7 +76,6 @@ static int pkg_init_names(struct upkg *pkg)
 
        while (index < pkg->name_count) {
                struct upkg_name *name = &pkg->priv->names[index];
-               name->index = index;
 
                /* Read some data into buffer. */
                if (!feof(pkg->priv->f)) {