Grrr. compile patches before you apply !
authorJeremy Allison <jra@samba.org>
Fri, 3 Oct 2003 20:13:11 +0000 (20:13 +0000)
committerJeremy Allison <jra@samba.org>
Fri, 3 Oct 2003 20:13:11 +0000 (20:13 +0000)
Jeremy.
(This used to be commit dfbde4be7191895d79762855b21f5c62d53d5267)

source3/rpc_parse/parse_rpc.c

index 5b97c44d653bc7056689de93cd03537d970b3e76..1ea59feaedbb7241801c656f118b6b34b8c9a8c5 100644 (file)
@@ -248,7 +248,7 @@ BOOL smb_io_rpc_hdr(const char *desc,  RPC_HDR *rpc, prs_struct *ps, int depth)
 
 static BOOL smb_io_rpc_uuid(const char *desc, RPC_UUID *uuid, prs_struct *ps, int depth)
 {
-       if (ifc == NULL)
+       if (uuid == NULL)
                return False;
 
        prs_debug(ps, depth, desc, "smb_io_rpc_uuid");
@@ -267,7 +267,7 @@ static BOOL smb_io_rpc_uuid(const char *desc, RPC_UUID *uuid, prs_struct *ps, in
        if(!prs_uint8s (False, "data   ", ps, depth, uuid->remaining, sizeof(uuid->remaining)))
                return False;
 
-       return true;
+       return True;
 }
 
 /*******************************************************************
@@ -282,10 +282,10 @@ static BOOL smb_io_rpc_iface(const char *desc, RPC_IFACE *ifc, prs_struct *ps, i
        prs_debug(ps, depth, desc, "smb_io_rpc_iface");
        depth++;
 
-       if (!smb_io_rpc_uuid(  "uuid", ps, depth, &ifc->uuid))
+       if (!smb_io_rpc_uuid(  "uuid", &ifc->uuid, ps, depth))
                return False;
 
-       if(!prs_uint32 (       "version", ps, depth, &ifc->version))
+       if(!prs_uint32 ("version", ps, depth, &ifc->version))
                return False;
 
        return True;