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

Samba Server: update vendor to 3.6.0

Location:
vendor/current/source4/lib/com
Files:
1 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source4/lib/com/dcom/main.c

    r414 r740  
    172172                return dcerpc_pipe_connect(ctx->event_ctx, p, "ncalrpc",
    173173                                                                   &ndr_table_IRemoteActivation,
    174                                                                    dcom_get_server_credentials(ctx, NULL), ctx->event_ctx, ctx->lp_ctx);
     174                                                                   dcom_get_server_credentials(ctx, NULL), ctx->event_ctx, ctx->lp_ctx);
    175175        }
    176176        loc_ctx = talloc_new(ctx);
     
    183183                status = dcerpc_pipe_connect_b(ctx->event_ctx, p, bd,
    184184                                                                           &ndr_table_IRemoteActivation,
    185                                                                    dcom_get_server_credentials(ctx, bd->host), ctx->event_ctx, ctx->lp_ctx);
     185                                                                   dcom_get_server_credentials(ctx, bd->host), ctx->event_ctx, ctx->lp_ctx);
    186186                goto end;
    187187        }
     
    705705                return;
    706706        }
    707 
     707/*TODO: FIXME - for now this unused anyway */
    708708        req = dcerpc_ndr_request_send(p, &s->d->obj.u_objref.u_standard.std.ipid, s->table, s->opnum, s, s->r);
    709709        composite_continue_rpc(c, req, s->continuation, c);
  • vendor/current/source4/lib/com/main.c

    r414 r740  
    5353
    5454        /* Run IClassFactory::CreateInstance() */
    55         error = IClassFactory_CreateInstance(factory, ctx, NULL, &classfact_iid, &iunk);
     55        error = IClassFactory_CreateInstance(factory, ctx, NULL, &classfact_iid, (struct MInterfacePointer *) &iunk);
    5656        if (!W_ERROR_IS_OK(error)) {
    5757                DEBUG(3, ("Error while calling IClassFactory::CreateInstance : %s\n", win_errstr(error)));
  • vendor/current/source4/lib/com/pycom.c

    r414 r740  
    1818*/
    1919
     20#include <Python.h>
    2021#include "includes.h"
    21 #include <Python.h>
    2222#include "lib/com/com.h"
    2323#include "librpc/ndr/libndr.h"
    2424#include "libcli/util/pyerrors.h"
    25 
    26 #ifndef Py_RETURN_NONE
    27 #define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
    28 #endif
    2925
    3026static struct com_context *py_com_ctx = NULL; /* FIXME: evil global */
Note: See TracChangeset for help on using the changeset viewer.