summaryrefslogtreecommitdiff
path: root/dbm
diff options
context:
space:
mode:
authortimeless%mozdev.org <devnull@localhost>2005-11-25 08:16:20 +0000
committertimeless%mozdev.org <devnull@localhost>2005-11-25 08:16:20 +0000
commita6a620f19dfd1d23282366944b1f257c77a9d6bd (patch)
tree8ecf1506e626a0c4d573e1ab216a3709a5c7dc75 /dbm
parent0427a82d8120526db2fd485dd702220b06ec6359 (diff)
downloadnss-hg-a6a620f19dfd1d23282366944b1f257c77a9d6bd.tar.gz
Bug 106386 Correct misspellings in source code
patch by unknown@simplemachines.org r=timeless rs=brendan
Diffstat (limited to 'dbm')
-rw-r--r--dbm/src/db.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbm/src/db.c b/dbm/src/db.c
index e4b1fff8f..6650cd2de 100644
--- a/dbm/src/db.c
+++ b/dbm/src/db.c
@@ -87,7 +87,7 @@ dbopen(const char *fname, int flags,int mode, DBTYPE type, const void *openinfo)
#define DB_FLAGS (DB_LOCK | DB_SHMEM | DB_TXN)
-#if 0 /* most systems dont have EXLOCK and SHLOCK */
+#if 0 /* most systems don't have EXLOCK and SHLOCK */
#define USE_OPEN_FLAGS \
(O_CREAT | O_EXCL | O_EXLOCK | O_NONBLOCK | O_RDONLY | \
O_RDWR | O_SHLOCK | O_TRUNC)