OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:control_path
(Results
1 - 5
of
5
) sorted by null
/external/openssh/
ssh.c
593
if (options.
control_path
!= NULL)
594
free(options.
control_path
);
595
options.
control_path
= xstrdup(optarg);
769
if (options.
control_path
!= NULL &&
770
strcmp(options.
control_path
, "none") == 0) {
771
xfree(options.
control_path
);
772
options.
control_path
= NULL;
775
if (options.
control_path
!= NULL) {
776
cp = tilde_expand_filename(options.
control_path
,
778
xfree(options.
control_path
);
[
all
...]
mux.c
941
xfree(options.
control_path
);
942
options.
control_path
= NULL;
1086
char *orig_control_path = options.
control_path
;
1090
if (options.
control_path
== NULL ||
1109
options.
control_path
= NULL;
1110
xasprintf(&options.
control_path
, "%s.%s", orig_control_path, rbuf);
1111
debug3("%s: temporary control path %s", __func__, options.
control_path
);
1116
strlen(options.
control_path
) + 1;
1118
if (strlcpy(addr.sun_path, options.
control_path
,
1121
options.
control_path
);
[
all
...]
readconf.h
119
char *
control_path
;
member in struct:__anon25839
clientloop.c
[
all
...]
readconf.c
903
charptr = &options->
control_path
;
[
all
...]
Completed in 703 milliseconds