Ignore:
Timestamp:
Mar 11, 2009, 9:14:55 AM (16 years ago)
Author:
Paul Smedley
Message:

Add 'missing' 3.0.34 diffs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.0/source/nsswitch/winbindd_rpc.c

    r71 r165  
    236236
    237237/* convert a single name to a sid in a domain */
    238 NTSTATUS msrpc_name_to_sid(struct winbindd_domain *domain,
    239                             TALLOC_CTX *mem_ctx,
    240                             const char *domain_name,
    241                             const char *name,
    242                             DOM_SID *sid,
    243                             enum lsa_SidType *type)
     238static NTSTATUS msrpc_name_to_sid(struct winbindd_domain *domain,
     239                                  TALLOC_CTX *mem_ctx,
     240                                  const char *domain_name,
     241                                  const char *name,
     242                                  DOM_SID *sid,
     243                                  enum lsa_SidType *type)
    244244{
    245245        NTSTATUS result;
     
    287287  convert a domain SID to a user or group name
    288288*/
    289 NTSTATUS msrpc_sid_to_name(struct winbindd_domain *domain,
    290                             TALLOC_CTX *mem_ctx,
    291                             const DOM_SID *sid,
    292                             char **domain_name,
    293                             char **name,
    294                             enum lsa_SidType *type)
     289static NTSTATUS msrpc_sid_to_name(struct winbindd_domain *domain,
     290                                  TALLOC_CTX *mem_ctx,
     291                                  const DOM_SID *sid,
     292                                  char **domain_name,
     293                                  char **name,
     294                                  enum lsa_SidType *type)
    295295{
    296296        char **domains;
     
    323323}
    324324
    325 NTSTATUS msrpc_rids_to_names(struct winbindd_domain *domain,
    326                              TALLOC_CTX *mem_ctx,
    327                              const DOM_SID *sid,
    328                              uint32 *rids,
    329                              size_t num_rids,
    330                              char **domain_name,
    331                              char ***names,
    332                              enum lsa_SidType **types)
     325static NTSTATUS msrpc_rids_to_names(struct winbindd_domain *domain,
     326                                    TALLOC_CTX *mem_ctx,
     327                                    const DOM_SID *sid,
     328                                    uint32 *rids,
     329                                    size_t num_rids,
     330                                    char **domain_name,
     331                                    char ***names,
     332                                    enum lsa_SidType **types)
    333333{
    334334        char **domains;
     
    531531}
    532532
    533 NTSTATUS msrpc_lookup_useraliases(struct winbindd_domain *domain,
    534                                   TALLOC_CTX *mem_ctx,
    535                                   uint32 num_sids, const DOM_SID *sids,
    536                                   uint32 *num_aliases, uint32 **alias_rids)
     533static NTSTATUS msrpc_lookup_useraliases(struct winbindd_domain *domain,
     534                                         TALLOC_CTX *mem_ctx,
     535                                         uint32 num_sids, const DOM_SID *sids,
     536                                         uint32 *num_aliases,
     537                                         uint32 **alias_rids)
    537538{
    538539        NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
     
    956957
    957958/* find the lockout policy for a domain */
    958 NTSTATUS msrpc_lockout_policy(struct winbindd_domain *domain,
    959                               TALLOC_CTX *mem_ctx,
    960                               SAM_UNK_INFO_12 *lockout_policy)
     959static NTSTATUS msrpc_lockout_policy(struct winbindd_domain *domain,
     960                                     TALLOC_CTX *mem_ctx,
     961                                     SAM_UNK_INFO_12 *lockout_policy)
    961962{
    962963        NTSTATUS result;
     
    988989
    989990/* find the password policy for a domain */
    990 NTSTATUS msrpc_password_policy(struct winbindd_domain *domain,
    991                                TALLOC_CTX *mem_ctx,
    992                                SAM_UNK_INFO_1 *password_policy)
     991static NTSTATUS msrpc_password_policy(struct winbindd_domain *domain,
     992                                      TALLOC_CTX *mem_ctx,
     993                                      SAM_UNK_INFO_1 *password_policy)
    993994{
    994995        NTSTATUS result;
Note: See TracChangeset for help on using the changeset viewer.