mirror of
https://github.com/samba-team/samba.git
synced 2025-05-28 21:05:48 +03:00
Fix spelling of background_process.
Jeremy.
This commit is contained in:
parent
042890056d
commit
94fc0ea9f9
@ -301,8 +301,8 @@ static struct cache_entry *wcache_fetch(struct winbind_cache *cache,
|
|||||||
extern BOOL opt_dual_daemon;
|
extern BOOL opt_dual_daemon;
|
||||||
|
|
||||||
if (opt_dual_daemon) {
|
if (opt_dual_daemon) {
|
||||||
extern BOOL backgroud_process;
|
extern BOOL background_process;
|
||||||
backgroud_process = True;
|
background_process = True;
|
||||||
} else {
|
} else {
|
||||||
centry_free(centry);
|
centry_free(centry);
|
||||||
return NULL;
|
return NULL;
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
#define DBGC_CLASS DBGC_WINBIND
|
#define DBGC_CLASS DBGC_WINBIND
|
||||||
|
|
||||||
extern BOOL opt_dual_daemon;
|
extern BOOL opt_dual_daemon;
|
||||||
BOOL backgroud_process = False;
|
BOOL background_process = False;
|
||||||
int dual_daemon_pipe = -1;
|
int dual_daemon_pipe = -1;
|
||||||
|
|
||||||
|
|
||||||
@ -82,7 +82,7 @@ void dual_select(fd_set *fds)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
n = write(dual_daemon_pipe,
|
n = sys_write(dual_daemon_pipe,
|
||||||
&dual_list->data[dual_list->offset],
|
&dual_list->data[dual_list->offset],
|
||||||
dual_list->length - dual_list->offset);
|
dual_list->length - dual_list->offset);
|
||||||
|
|
||||||
@ -114,7 +114,7 @@ void dual_send_request(struct winbindd_cli_state *state)
|
|||||||
{
|
{
|
||||||
struct dual_list *list;
|
struct dual_list *list;
|
||||||
|
|
||||||
if (!backgroud_process) return;
|
if (!background_process) return;
|
||||||
|
|
||||||
list = malloc(sizeof(*list));
|
list = malloc(sizeof(*list));
|
||||||
if (!list) return;
|
if (!list) return;
|
||||||
@ -132,7 +132,7 @@ void dual_send_request(struct winbindd_cli_state *state)
|
|||||||
dual_list_end = list;
|
dual_list_end = list;
|
||||||
}
|
}
|
||||||
|
|
||||||
backgroud_process = False;
|
background_process = False;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user