updated code to snapshot 2002-04-11

This commit is contained in:
Дмитрий Левин 2002-04-12 05:52:33 +00:00
parent 6886f95249
commit 62a57e9dd7
3 changed files with 6 additions and 2 deletions

View File

@ -74,6 +74,7 @@
- speedup large queries by ~50%.
- revert to presentation ordering Yet Again (#62158).
- non-glibc: on upgrade, mergesort is much faster than quicksort.
- fix: generate config file md5 as ascii, not binary (#62542).
4.0.2 -> 4.0.3:
- update per-interpreter dependency scripts, add sql/tcl (#20295).

View File

@ -838,7 +838,7 @@ static fileAction decideFileFate(const char * dirName,
}
if (dbWhat == REG) {
rc = domd5(filespec, buffer, 0);
rc = domd5(filespec, buffer, 1);
if (rc) {
/* assume the file has been removed, don't freak */
return FA_CREATE;

View File

@ -20,7 +20,7 @@ Name: rpm
%define version @VERSION@
Version: %{version}
%{expand: %%define rpm_version %{version}}
Release: 7x.14
Release: 7x.15
Group: System Environment/Base
Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz
Copyright: GPL
@ -521,6 +521,9 @@ fi
%{__prefix}/include/popt.h
%changelog
* Thu Apr 11 2002 Jeff Johnson <jbj@redhat.com>
- fix: generate config file md5 as ascii, not binary (#62542).
* Fri Apr 5 2002 Jeff Johnson <jbj@redhat.com>
- non-glibc: on upgrade, mergesort is much faster than quicksort.