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/utils/net_eventlog.c

    r414 r745  
    2222#include "includes.h"
    2323#include "utils/net.h"
     24#include "lib/eventlog/eventlog.h"
    2425
    2526/**
     
    5556        }
    5657
    57         ndr_err = ndr_pull_struct_blob(&blob, ctx, NULL, &evt,
     58        ndr_err = ndr_pull_struct_blob(&blob, ctx, &evt,
    5859                   (ndr_pull_flags_fn_t)ndr_pull_EVENTLOG_EVT_FILE);
    5960        if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
     
    113114
    114115        /* dump_data(0, blob.data, blob.length); */
    115         ndr_err = ndr_pull_struct_blob(&blob, ctx, NULL, &evt_header,
     116        ndr_err = ndr_pull_struct_blob(&blob, ctx, &evt_header,
    116117                   (ndr_pull_flags_fn_t)ndr_pull_EVENTLOGHEADER);
    117118        if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
     
    126127        }
    127128
    128         ndr_err = ndr_pull_struct_blob(&blob, ctx, NULL, &evt,
     129        ndr_err = ndr_pull_struct_blob(&blob, ctx, &evt,
    129130                   (ndr_pull_flags_fn_t)ndr_pull_EVENTLOG_EVT_FILE);
    130131        if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
Note: See TracChangeset for help on using the changeset viewer.