]> git.pld-linux.org Git - packages/nss_db.git/blob - nss_db-db41.patch
- rel .8
[packages/nss_db.git] / nss_db-db41.patch
1 --- nss_db-2.2.3pre1/src/db-compat.c.orig       2001-04-30 03:07:41.000000000 +0200
2 +++ nss_db-2.2.3pre1/src/db-compat.c    2004-04-02 23:57:06.562464288 +0200
3 @@ -39,7 +39,11 @@
4    if (err)
5      return err;
6  
7 +#if (DB_VERSION_MAJOR > 4) || ((DB_VERSION_MAJOR == 4) && (DB_VERSION_MINOR >= 1))
8 +  err = db->open (db, NULL, file, NULL, type, flags, mode);
9 +#else
10    err = db->open (db, file, NULL, type, flags, mode);
11 +#endif
12    if (err)
13      {
14        db->close (db, 0);
This page took 0.02316 seconds and 3 git commands to generate.