This commit is contained in:
committed by
Git OBS Bridge
parent
64a650bf09
commit
8c64a58df3
@@ -2,19 +2,21 @@ Make the numbers reported for diskspace problems more user
|
||||
friendly. Probably a bad idea, as it changes the semantics. Instead,
|
||||
the messages should be changed.
|
||||
|
||||
--- ./lib/rpmts.c.orig 2005-02-13 03:12:03.000000000 +0000
|
||||
+++ ./lib/rpmts.c 2005-12-15 15:12:10.000000000 +0000
|
||||
@@ -1358,14 +1363,14 @@ void rpmtsCheckDSIProblems(const rpmts t
|
||||
Index: lib/rpmts.c
|
||||
===================================================================
|
||||
--- lib/rpmts.c.orig
|
||||
+++ lib/rpmts.c
|
||||
@@ -1358,14 +1358,14 @@ void rpmtsCheckDSIProblems(const rpmts t
|
||||
rpmpsAppend(ps, RPMPROB_DISKSPACE,
|
||||
rpmteNEVR(te), rpmteKey(te),
|
||||
rpmteNEVRA(te), rpmteKey(te),
|
||||
ts->filesystems[i], NULL, NULL,
|
||||
- (adj_fs_blocks(dsi->bneeded) - dsi->bavail) * dsi->bsize);
|
||||
+ (adj_fs_blocks(dsi->bneeded)) * dsi->bsize);
|
||||
}
|
||||
|
||||
if (dsi->iavail > 0 && adj_fs_blocks(dsi->ineeded) > dsi->iavail) {
|
||||
if (dsi->iavail >= 0 && adj_fs_blocks(dsi->ineeded) > dsi->iavail) {
|
||||
rpmpsAppend(ps, RPMPROB_DISKNODES,
|
||||
rpmteNEVR(te), rpmteKey(te),
|
||||
rpmteNEVRA(te), rpmteKey(te),
|
||||
ts->filesystems[i], NULL, NULL,
|
||||
- (adj_fs_blocks(dsi->ineeded) - dsi->iavail));
|
||||
+ (adj_fs_blocks(dsi->ineeded)));
|
||||
|
Reference in New Issue
Block a user