summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2014-04-02 14:52:01 +0200
committerMichael Adam <obnox@samba.org>2014-04-02 17:11:37 +0200
commit1dba07db0d3d511ce7c3a10ad3c2e3d0994615dd (patch)
treec26b49d0a8cd5168b47e91f12892476d35b0af57 /lib
parent8175e980298cf21595732070bc6f59cba26afe33 (diff)
downloadsamba-1dba07db0d3d511ce7c3a10ad3c2e3d0994615dd.tar.gz
samba-1dba07db0d3d511ce7c3a10ad3c2e3d0994615dd.tar.xz
samba-1dba07db0d3d511ce7c3a10ad3c2e3d0994615dd.zip
dlinklist: Fix a typo
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Michael Adam <obnox@samba.org> Autobuild-User(master): Michael Adam <obnox@samba.org> Autobuild-Date(master): Wed Apr 2 17:11:37 CEST 2014 on sn-devel-104
Diffstat (limited to 'lib')
-rw-r--r--lib/ldb/include/dlinklist.h2
-rw-r--r--lib/tevent/tevent_util.h2
-rw-r--r--lib/util/dlinklist.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/ldb/include/dlinklist.h b/lib/ldb/include/dlinklist.h
index 1c577bb6b90..f640b0fafeb 100644
--- a/lib/ldb/include/dlinklist.h
+++ b/lib/ldb/include/dlinklist.h
@@ -146,7 +146,7 @@ do { \
} \
} while (0)
-/* promote an element to the from of a list */
+/* promote an element to the front of a list */
#define DLIST_PROMOTE(list, p) \
do { \
DLIST_REMOVE(list, p); \
diff --git a/lib/tevent/tevent_util.h b/lib/tevent/tevent_util.h
index 311be604a08..6f91983ae9d 100644
--- a/lib/tevent/tevent_util.h
+++ b/lib/tevent/tevent_util.h
@@ -142,7 +142,7 @@ do { \
} \
} while (0)
-/* promote an element to the from of a list */
+/* promote an element to the front of a list */
#define DLIST_PROMOTE(list, p) \
do { \
DLIST_REMOVE(list, p); \
diff --git a/lib/util/dlinklist.h b/lib/util/dlinklist.h
index 6d525f90364..5520901739b 100644
--- a/lib/util/dlinklist.h
+++ b/lib/util/dlinklist.h
@@ -142,7 +142,7 @@ do { \
} \
} while (0)
-/* promote an element to the from of a list */
+/* promote an element to the front of a list */
#define DLIST_PROMOTE(list, p) \
do { \
DLIST_REMOVE(list, p); \