summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2001-11-06 22:46:26 +0000
committerjbj <devnull@localhost>2001-11-06 22:46:26 +0000
commite680cce3e8a80425586c6e2448f57a48606d220b (patch)
tree663ce322c8de2bca7fa05171e76e30d9ca80c7ab /db
parent0724785fb3a9b4d4fc1d10c6e6238b70f9752c56 (diff)
downloadrpm-e680cce3e8a80425586c6e2448f57a48606d220b.tar.gz
rpm-e680cce3e8a80425586c6e2448f57a48606d220b.tar.bz2
rpm-e680cce3e8a80425586c6e2448f57a48606d220b.zip
- fix: harmless typo in db3 chroot hack.
- fix: big-endian's with sizeof(time_t) != sizeof(int_32) mtime broken. - fix: add Korean message catalogs (#54473). - add RPHNPLATFORM and PLATFORM tags. - linear search on added package provides is dumb. - discarding entire signature header when using --addsign is dumb. CVS patchset: 5159 CVS date: 2001/11/06 22:46:26
Diffstat (limited to 'db')
-rw-r--r--db/mp/mp_fopen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/mp/mp_fopen.c b/db/mp/mp_fopen.c
index b5851174b..e5d7250d0 100644
--- a/db/mp/mp_fopen.c
+++ b/db/mp/mp_fopen.c
@@ -314,7 +314,7 @@ __memp_fopen_int(dbmfp, mfp, path, flags, mode, pagesize, needlock)
if (chroot_prefix) {
int chrlen = strlen(chroot_prefix);
if (!strncmp(rpath, chroot_prefix, chrlen))
- rpath += chrlen = 1;
+ rpath += chrlen;
}
oflags = 0;
if (LF_ISSET(DB_CREATE))