Ignore:
Timestamp:
Nov 14, 2012, 12:59:34 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to 3.6.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/locking/posix.c

    r414 r740  
    2323
    2424#include "includes.h"
     25#include "system/filesys.h"
     26#include "locking/proto.h"
     27#include "dbwrap.h"
     28#include "util_tdb.h"
    2529
    2630#undef DBGC_CLASS
     
    909913                                /*
    910914                                 * 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.
    912915                                 */
    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);
    917917
    918918                                /* And move after the link we added. */
Note: See TracChangeset for help on using the changeset viewer.