Correct typo.
authorjbj <devnull@localhost>
Wed, 18 Dec 2002 22:59:03 +0000 (22:59 +0000)
committerjbj <devnull@localhost>
Wed, 18 Dec 2002 22:59:03 +0000 (22:59 +0000)
CVS patchset: 5948
CVS date: 2002/12/18 22:59:03

CHANGES
lib/rpmfi.c

diff --git a/CHANGES b/CHANGES
index fab0997..2cf6638 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -56,6 +56,7 @@
        - rebuild against glibc with fcntl fixed in libpthread.
        - re-enable CDB locking, removing "private" from %%__dbi_cdb macro.
        - popt aliases for -U et al to achieve dynamic link with nptl.
+       - add --file{class,provide,require} popt aliases and header extensions.
 
 4.0.4 -> 4.1:
        - loosely wire beecrypt library into rpm.
index 00901b3..d9ddb5f 100644 (file)
@@ -1266,7 +1266,7 @@ void rpmfiBuildFDeps(Header h, rpmTag tagN,
                (void) rpmdsSetIx(ds, ix-1);
                if (rpmdsNext(ds) < 0)
                    continue;
-               DNEVR = rpmdsDNEVR(ds) + 2;
+               DNEVR = rpmdsDNEVR(ds);
                if (DNEVR != NULL)
                    nb += strlen(DNEVR+2) + 1;
            }
@@ -1292,7 +1292,7 @@ void rpmfiBuildFDeps(Header h, rpmTag tagN,
                (void) rpmdsSetIx(ds, ix-1);
                if (rpmdsNext(ds) < 0)
                    continue;
-               DNEVR = rpmdsDNEVR(ds) + 2;
+               DNEVR = rpmdsDNEVR(ds);
                if (DNEVR != NULL) {
                    t = stpcpy(t, DNEVR+2);
                    *t++ = ' ';