Added tizen packaging
[platform/upstream/libdb.git] / packaging / patch.1.4
1 *** btree/bt_page.c.orig        Wed Jul 13 21:29:02 1994
2 --- btree/bt_page.c     Wed Jun 11 20:14:43 1997
3 ***************
4 *** 65,70 ****
5 --- 65,71 ----
6         h->prevpg = P_INVALID;
7         h->nextpg = t->bt_free;
8         t->bt_free = h->pgno;
9 +       F_SET(t, B_METADIRTY);
10   
11         /* Make sure the page gets written back. */
12         return (mpool_put(t->bt_mp, h, MPOOL_DIRTY));
13 ***************
14 *** 92,97 ****
15 --- 93,99 ----
16             (h = mpool_get(t->bt_mp, t->bt_free, 0)) != NULL) {
17                 *npg = t->bt_free;
18                 t->bt_free = h->nextpg;
19 +               F_SET(t, B_METADIRTY);
20                 return (h);
21         }
22         return (mpool_new(t->bt_mp, npg));