]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
Happy New Year!
authorQuanah Gibson-Mount <quanah@openldap.org>
Thu, 9 Jan 2020 16:32:20 +0000 (16:32 +0000)
committerHoward Chu <hyc@openldap.org>
Sat, 10 Oct 2020 12:51:45 +0000 (13:51 +0100)
24 files changed:
libraries/liblmdb/COPYRIGHT
libraries/liblmdb/intro.doc
libraries/liblmdb/lmdb.h
libraries/liblmdb/mdb.c
libraries/liblmdb/mdb_copy.1
libraries/liblmdb/mdb_copy.c
libraries/liblmdb/mdb_drop.1
libraries/liblmdb/mdb_drop.c
libraries/liblmdb/mdb_dump.1
libraries/liblmdb/mdb_dump.c
libraries/liblmdb/mdb_load.1
libraries/liblmdb/mdb_load.c
libraries/liblmdb/mdb_stat.1
libraries/liblmdb/mdb_stat.c
libraries/liblmdb/midl.c
libraries/liblmdb/midl.h
libraries/liblmdb/mtest.c
libraries/liblmdb/mtest2.c
libraries/liblmdb/mtest3.c
libraries/liblmdb/mtest4.c
libraries/liblmdb/mtest5.c
libraries/liblmdb/mtest6.c
libraries/liblmdb/sample-bdb.txt
libraries/liblmdb/sample-mdb.txt

index f076556eb506e5087954b2cba5c4bae33f279cd2..d9118b97c9901e1c17ec22658ce85b14aaf1a0f7 100644 (file)
@@ -1,4 +1,4 @@
-Copyright 2011-2019 Howard Chu, Symas Corp.
+Copyright 2011-2020 Howard Chu, Symas Corp.
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
index 64dfcaad8487e8be435cdc91741a04d796e2b3cc..4853af736f7354accd71734e0fd462faf29a088e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015-2018 Howard Chu, Symas Corp.
+ * Copyright 2015-2020 Howard Chu, Symas Corp.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index cf47dbc5ff8b585de07e8198c04be79867cc26c9..67b666712732573e4984a1a5af0901b0403c3e05 100644 (file)
  *
  *     @author Howard Chu, Symas Corporation.
  *
- *     @copyright Copyright 2011-2019 Howard Chu, Symas Corp. All rights reserved.
+ *     @copyright Copyright 2011-2020 Howard Chu, Symas Corp. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted only as authorized by the OpenLDAP
@@ -234,7 +234,7 @@ typedef int mdb_filehandle_t;
 /** Library minor version */
 #define MDB_VERSION_MINOR      9
 /** Library patch version */
-#define MDB_VERSION_PATCH      70
+#define MDB_VERSION_PATCH      90
 
 /** Combine args a,b,c into a single integer for easy version comparisons */
 #define MDB_VERINT(a,b,c)      (((a) << 24) | ((b) << 16) | (c))
@@ -244,7 +244,7 @@ typedef int mdb_filehandle_t;
        MDB_VERINT(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH)
 
 /** The release date of this library version */
-#define MDB_VERSION_DATE       "December 19, 2015"
+#define MDB_VERSION_DATE       "May 1, 2017"
 
 /** A stringifier for the version info */
 #define MDB_VERSTR(a,b,c,d)    "LMDB " #a "." #b "." #c ": (" d ")"
index 83b18ecd2878819bcf77e0234524041115358fb0..6323956e51380870a160d22f9f4b5c4f181f908c 100644 (file)
@@ -5,7 +5,7 @@
  *     BerkeleyDB API, but much simplified.
  */
 /*
- * Copyright 2011-2019 Howard Chu, Symas Corp.
+ * Copyright 2011-2020 Howard Chu, Symas Corp.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index d5a95014a29c1bf771b618a8de1fd0b3f380f0e8..fdf266368dae374595f2429f00323d76d9486bcd 100644 (file)
@@ -1,5 +1,5 @@
 .TH MDB_COPY 1 "2017/07/31" "LMDB 0.9.90"
-.\" Copyright 2012-2018 Howard Chu, Symas Corp. All Rights Reserved.
+.\" Copyright 2012-2020 Howard Chu, Symas Corp. All Rights Reserved.
 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
 .SH NAME
 mdb_copy \- LMDB environment copy tool
index 23be815062164404e57a0b8bf597c7d2b5e671f1..cfcd13ac303b677c402d84b77a4474569f9906ad 100644 (file)
@@ -1,6 +1,6 @@
 /* mdb_copy.c - memory-mapped database backup tool */
 /*
- * Copyright 2012-2018 Howard Chu, Symas Corp.
+ * Copyright 2012-2020 Howard Chu, Symas Corp.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index 370d89c032e86c4c9948a3c3bd6d873e13e0a1b9..ff83fd98b5c29e7cee5e2fdf47761ab91e57d873 100644 (file)
@@ -1,5 +1,5 @@
 .TH MDB_DROP 1 "2017/11/19" "LMDB 0.9.90"
-.\" Copyright 2014-2018 Howard Chu, Symas Corp. All Rights Reserved.
+.\" Copyright 2014-2020 Howard Chu, Symas Corp. All Rights Reserved.
 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
 .SH NAME
 mdb_drop \- LMDB database delete tool
index 7d2af4b62eb22474b9cd352bceb297cf630e2dd1..3d9d779b5bbc4e76f529a39867894f798ee1da97 100644 (file)
@@ -1,6 +1,6 @@
 /* mdb_drop.c - memory-mapped database delete tool */
 /*
- * Copyright 2016-2018 Howard Chu, Symas Corp.
+ * Copyright 2016-2020 Howard Chu, Symas Corp.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index 65aafbacdcf348da813249e655ee7923ca5306f9..bde27733002346eab533f47e66f3e2e20ea079ad 100644 (file)
@@ -1,5 +1,5 @@
 .TH MDB_DUMP 1 "2017/07/31" "LMDB 0.9.90"
-.\" Copyright 2014-2018 Howard Chu, Symas Corp. All Rights Reserved.
+.\" Copyright 2014-2020 Howard Chu, Symas Corp. All Rights Reserved.
 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
 .SH NAME
 mdb_dump \- LMDB environment export tool
index ef296ce1d1af1d5d1e544020ec9c4ae2c0928209..e0cca9ad2564da0a3648e8521bb5bfbc07abb2bc 100644 (file)
@@ -1,6 +1,6 @@
 /* mdb_dump.c - memory-mapped database dump tool */
 /*
- * Copyright 2011-2018 Howard Chu, Symas Corp.
+ * Copyright 2011-2020 Howard Chu, Symas Corp.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index 7bfaa9126ca0470a5a6d4fa7968ced1d6501864a..7dd8aa1f425aef1d61b2c94250ee1167f6b3ae98 100644 (file)
@@ -1,5 +1,5 @@
 .TH MDB_LOAD 1 "2015/09/30" "LMDB 0.9.90"
-.\" Copyright 2014-2018 Howard Chu, Symas Corp. All Rights Reserved.
+.\" Copyright 2014-2020 Howard Chu, Symas Corp. All Rights Reserved.
 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
 .SH NAME
 mdb_load \- LMDB environment import tool
index 0a2c91f40a5b80deb28c29644dbc8554d422e296..0a99e177f1d1b9fe7b277bb1ce7b90683066572a 100644 (file)
@@ -1,6 +1,6 @@
 /* mdb_load.c - memory-mapped database load tool */
 /*
- * Copyright 2011-2018 Howard Chu, Symas Corp.
+ * Copyright 2011-2020 Howard Chu, Symas Corp.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index f5dd86e228321f860a5ebb7fddff5eb53f73e9a0..a618450eff67bb1fb77e8bbcbc111d73c544e478 100644 (file)
@@ -1,5 +1,5 @@
 .TH MDB_STAT 1 "2017/07/31" "LMDB 0.9.90"
-.\" Copyright 2012-2018 Howard Chu, Symas Corp. All Rights Reserved.
+.\" Copyright 2012-2020 Howard Chu, Symas Corp. All Rights Reserved.
 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
 .SH NAME
 mdb_stat \- LMDB environment status tool
index 54a6257a202bbb1dd0f6c2c97be45dabad15f6c7..ad1fef5052a041d4e7b877a34b879cfcb1d4f32b 100644 (file)
@@ -1,6 +1,6 @@
 /* mdb_stat.c - memory-mapped database status tool */
 /*
- * Copyright 2011-2018 Howard Chu, Symas Corp.
+ * Copyright 2011-2020 Howard Chu, Symas Corp.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index fc7da2a732b4991d6eca13b0496bdbf7087b6796..049009e0dab92589a57056ffb4edd76e070a79a0 100644 (file)
@@ -3,8 +3,8 @@
 /* $OpenLDAP$ */
 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
  *
- * Copyright 2000-2019 The OpenLDAP Foundation.
- * Portions Copyright 2001-2018 Howard Chu, Symas Corp.
+ * Copyright 2000-2020 The OpenLDAP Foundation.
+ * Portions Copyright 2001-2020 Howard Chu, Symas Corp.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index 202f569bdee1155cf308a6a2434f089341c41f87..48f4d82d23bbe692cdd652b2374385074a7f027b 100644 (file)
@@ -11,8 +11,8 @@
 /* $OpenLDAP$ */
 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
  *
- * Copyright 2000-2019 The OpenLDAP Foundation.
- * Portions Copyright 2001-2019 Howard Chu, Symas Corp.
+ * Copyright 2000-2020 The OpenLDAP Foundation.
+ * Portions Copyright 2001-2020 Howard Chu, Symas Corp.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index 6fc5840c3f870db893adc5e342136a27343860cd..c1c9abb8f70c22bead9d34a68089caf898fbc832 100644 (file)
@@ -1,6 +1,6 @@
 /* mtest.c - memory-mapped database tester/toy */
 /*
- * Copyright 2011-2018 Howard Chu, Symas Corp.
+ * Copyright 2011-2020 Howard Chu, Symas Corp.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index 64b742aa4677f13091ba88f44642c6123ebb8b8d..db32525c5b0cd3d5df06b78be9db5a9d73663473 100644 (file)
@@ -1,6 +1,6 @@
 /* mtest2.c - memory-mapped database tester/toy */
 /*
- * Copyright 2011-2018 Howard Chu, Symas Corp.
+ * Copyright 2011-2020 Howard Chu, Symas Corp.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index 81e4bbf9b050b0641f3036b9932d0e3e91cc9a5a..bc471eeeaa479839e15b03f792182a9c291705dd 100644 (file)
@@ -1,6 +1,6 @@
 /* mtest3.c - memory-mapped database tester/toy */
 /*
- * Copyright 2011-2018 Howard Chu, Symas Corp.
+ * Copyright 2011-2020 Howard Chu, Symas Corp.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index c355cf105a96d825a5dbd355baf2de63ab07d990..b7531755a96613902866ccec5505c2794614f6c7 100644 (file)
@@ -1,6 +1,6 @@
 /* mtest4.c - memory-mapped database tester/toy */
 /*
- * Copyright 2011-2018 Howard Chu, Symas Corp.
+ * Copyright 2011-2020 Howard Chu, Symas Corp.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index 95793ec1fb76596a80ee0a8125db3d42d71457b7..d6d1cf9cd796a631d3f67ad32bb019369a96122f 100644 (file)
@@ -1,6 +1,6 @@
 /* mtest5.c - memory-mapped database tester/toy */
 /*
- * Copyright 2011-2018 Howard Chu, Symas Corp.
+ * Copyright 2011-2020 Howard Chu, Symas Corp.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index cb0d4d73c9a6c51b87540ead7fd55455ef57dfd8..e4d4e6b27ee67b946fad2edac727f25699e0c120 100644 (file)
@@ -1,6 +1,6 @@
 /* mtest6.c - memory-mapped database tester/toy */
 /*
- * Copyright 2011-2018 Howard Chu, Symas Corp.
+ * Copyright 2011-2020 Howard Chu, Symas Corp.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index 97220f0ed22d4ced64fa9cf6572d60220594c9a3..c72078c7221eba49eb52a9186af87481fbf7a26d 100644 (file)
@@ -3,7 +3,7 @@
  * Do a line-by-line comparison of this and sample-mdb.txt
  */
 /*
- * Copyright 2012-2018 Howard Chu, Symas Corp.
+ * Copyright 2012-2020 Howard Chu, Symas Corp.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
index 1d20ed3d02bf470ce45c2554df18ba4c8d0710c3..e54a8470682b9ca194194f18bd10c0d967150227 100644 (file)
@@ -3,7 +3,7 @@
  * Do a line-by-line comparison of this and sample-bdb.txt
  */
 /*
- * Copyright 2012-2018 Howard Chu, Symas Corp.
+ * Copyright 2012-2020 Howard Chu, Symas Corp.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without