Changeset 988 for vendor/current/source3/services
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- Location:
- vendor/current/source3/services
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/services/services.h
r740 r988 41 41 42 42 typedef struct _ServiceInfo { 43 uint8 type;43 uint8_t type; 44 44 char *name; 45 uint32 45 uint32_t access_granted; 46 46 SERVICE_CONTROL_OPS *ops; 47 47 } SERVICE_INFO; -
vendor/current/source3/services/svc_spoolss.c
r740 r988 49 49 /* see if the smb.conf will support this anyways */ 50 50 51 if ( _lp_disable_spoolss() )51 if ( lp__disable_spoolss() ) 52 52 return WERR_ACCESS_DENIED; 53 53 -
vendor/current/source3/services/svc_winreg_glue.c
r740 r988 78 78 struct security_descriptor *svcctl_get_secdesc(TALLOC_CTX *mem_ctx, 79 79 struct messaging_context *msg_ctx, 80 const struct auth_se rversupplied_info *session_info,80 const struct auth_session_info *session_info, 81 81 const char *name) 82 82 { … … 148 148 149 149 bool svcctl_set_secdesc(struct messaging_context *msg_ctx, 150 const struct auth_se rversupplied_info *session_info,150 const struct auth_session_info *session_info, 151 151 const char *name, 152 152 struct security_descriptor *sd) … … 260 260 const char *svcctl_get_string_value(TALLOC_CTX *mem_ctx, 261 261 struct messaging_context *msg_ctx, 262 const struct auth_se rversupplied_info *session_info,262 const struct auth_session_info *session_info, 263 263 const char *key_name, 264 264 const char *value_name) … … 322 322 const char *svcctl_lookup_dispname(TALLOC_CTX *mem_ctx, 323 323 struct messaging_context *msg_ctx, 324 const struct auth_se rversupplied_info *session_info,324 const struct auth_session_info *session_info, 325 325 const char *name) 326 326 { … … 345 345 const char *svcctl_lookup_description(TALLOC_CTX *mem_ctx, 346 346 struct messaging_context *msg_ctx, 347 const struct auth_se rversupplied_info *session_info,347 const struct auth_session_info *session_info, 348 348 const char *name) 349 349 { -
vendor/current/source3/services/svc_winreg_glue.h
r740 r988 25 25 #define SVC_WINREG_GLUE_H 26 26 27 struct auth_se rversupplied_info;27 struct auth_session_info; 28 28 29 29 struct security_descriptor* svcctl_gen_service_sd(TALLOC_CTX *mem_ctx); … … 31 31 struct security_descriptor *svcctl_get_secdesc(TALLOC_CTX *mem_ctx, 32 32 struct messaging_context *msg_ctx, 33 const struct auth_se rversupplied_info *session_info,33 const struct auth_session_info *session_info, 34 34 const char *name); 35 35 36 36 bool svcctl_set_secdesc(struct messaging_context *msg_ctx, 37 const struct auth_se rversupplied_info *session_info,37 const struct auth_session_info *session_info, 38 38 const char *name, 39 39 struct security_descriptor *sd); … … 41 41 const char *svcctl_get_string_value(TALLOC_CTX *mem_ctx, 42 42 struct messaging_context *msg_ctx, 43 const struct auth_se rversupplied_info *session_info,43 const struct auth_session_info *session_info, 44 44 const char *key_name, 45 45 const char *value_name); … … 47 47 const char *svcctl_lookup_dispname(TALLOC_CTX *mem_ctx, 48 48 struct messaging_context *msg_ctx, 49 const struct auth_se rversupplied_info *session_info,49 const struct auth_session_info *session_info, 50 50 const char *name); 51 51 52 52 const char *svcctl_lookup_description(TALLOC_CTX *mem_ctx, 53 53 struct messaging_context *msg_ctx, 54 const struct auth_se rversupplied_info *session_info,54 const struct auth_session_info *session_info, 55 55 const char *name); 56 56 -
vendor/current/source3/services/svc_wins.c
r740 r988 33 33 service_status->controls_accepted = SVCCTL_ACCEPT_NONE; 34 34 35 if ( lp_w ins_support() )35 if ( lp_we_are_a_wins_server() ) 36 36 service_status->state = SVCCTL_RUNNING; 37 37 else {
Note:
See TracChangeset
for help on using the changeset viewer.