Changeset 740 for vendor/current/source3/locking/posix.c
- Timestamp:
- Nov 14, 2012, 12:59:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/locking/posix.c
r414 r740 23 23 24 24 #include "includes.h" 25 #include "system/filesys.h" 26 #include "locking/proto.h" 27 #include "dbwrap.h" 28 #include "util_tdb.h" 25 29 26 30 #undef DBGC_CLASS … … 909 913 /* 910 914 * Add into the dlink list after the l_curr point - NOT at lhead. 911 * Note we can't use DLINK_ADD here as this inserts at the head of the given list.912 915 */ 913 914 l_new->prev = l_curr; 915 l_new->next = l_curr->next; 916 l_curr->next = l_new; 916 DLIST_ADD_AFTER(lhead, l_new, l_curr); 917 917 918 918 /* And move after the link we added. */
Note:
See TracChangeset
for help on using the changeset viewer.