Changeset 745 for trunk/server/source3/utils/net_eventlog.c
- Timestamp:
- Nov 27, 2012, 4:43:17 PM (13 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 581,587,591,594,597,600,615,618,740
- Property svn:mergeinfo changed
-
trunk/server/source3/utils/net_eventlog.c
r414 r745 22 22 #include "includes.h" 23 23 #include "utils/net.h" 24 #include "lib/eventlog/eventlog.h" 24 25 25 26 /** … … 55 56 } 56 57 57 ndr_err = ndr_pull_struct_blob(&blob, ctx, NULL,&evt,58 ndr_err = ndr_pull_struct_blob(&blob, ctx, &evt, 58 59 (ndr_pull_flags_fn_t)ndr_pull_EVENTLOG_EVT_FILE); 59 60 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) { … … 113 114 114 115 /* 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, 116 117 (ndr_pull_flags_fn_t)ndr_pull_EVENTLOGHEADER); 117 118 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) { … … 126 127 } 127 128 128 ndr_err = ndr_pull_struct_blob(&blob, ctx, NULL,&evt,129 ndr_err = ndr_pull_struct_blob(&blob, ctx, &evt, 129 130 (ndr_pull_flags_fn_t)ndr_pull_EVENTLOG_EVT_FILE); 130 131 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
Note:
See TracChangeset
for help on using the changeset viewer.