2011-05-16 18:07:44 +02:00
|
|
|
This used to be the taggedfileindex patch, but it's gone.
|
|
|
|
The remaining part just strips off the tag.
|
2014-09-16 14:03:10 +02:00
|
|
|
|
2017-01-19 16:41:55 +01:00
|
|
|
--- ./lib/backend/db3.c.orig 2017-01-19 12:54:16.141112342 +0000
|
|
|
|
+++ ./lib/backend/db3.c 2017-01-19 12:55:14.587945851 +0000
|
|
|
|
@@ -1024,6 +1024,9 @@ static int dbt2set(dbiIndex dbi, DBT * d
|
|
|
|
_DBSWAP(hdrNum);
|
|
|
|
_DBSWAP(tagNum);
|
2009-08-28 15:54:03 +02:00
|
|
|
}
|
2017-01-19 16:41:55 +01:00
|
|
|
+ /* remove tagged directory info */
|
|
|
|
+ if (tagNum.ui & 0x80000000)
|
|
|
|
+ tagNum.ui &= 0x0000ffff;
|
|
|
|
set->recs[i].hdrNum = hdrNum.ui;
|
|
|
|
set->recs[i].tagNum = tagNum.ui;
|
|
|
|
}
|