Ignore:
Timestamp:
Nov 27, 2012, 4:43:17 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: updated trunk to 3.6.0

Location:
trunk/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/server

  • trunk/server/source3/locking/posix.c

    r454 r745  
    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
     
    911915                                /*
    912916                                 * Add into the dlink list after the l_curr point - NOT at lhead.
    913                                  * Note we can't use DLINK_ADD here as this inserts at the head of the given list.
    914917                                 */
    915 
    916                                 l_new->prev = l_curr;
    917                                 l_new->next = l_curr->next;
    918                                 l_curr->next = l_new;
     918                                DLIST_ADD_AFTER(lhead, l_new, l_curr);
    919919
    920920                                /* And move after the link we added. */
Note: See TracChangeset for help on using the changeset viewer.