Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ZerXes
Tor
Commits
f8f278f8
Commit
f8f278f8
authored
Nov 29, 2019
by
teor
Browse files
control: Remove an unused function return value
Cleanup after 31531.
parent
7a69b3ae
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/feature/control/control_events.c
View file @
f8f278f8
...
...
@@ -1774,13 +1774,13 @@ control_event_guard(const char *nickname, const char *digest,
* by SETCONF requests and RELOAD/SIGHUP signals. The <b>changes</b> are
* a smartlist_t containing (key, value, ...) pairs in sequence.
* <b>changes</b> can be NULL. */
int
void
control_event_conf_changed
(
const
config_line_t
*
changes
)
{
char
*
result
;
smartlist_t
*
lines
;
if
(
!
EVENT_IS_INTERESTING
(
EVENT_CONF_CHANGED
)
||
!
changes
)
{
return
0
;
return
;
}
lines
=
smartlist_new
();
for
(
const
config_line_t
*
line
=
changes
;
line
;
line
=
line
->
next
)
{
...
...
@@ -1796,7 +1796,6 @@ control_event_conf_changed(const config_line_t *changes)
tor_free
(
result
);
SMARTLIST_FOREACH
(
lines
,
char
*
,
cp
,
tor_free
(
cp
));
smartlist_free
(
lines
);
return
0
;
}
/** We just generated a new summary of which countries we've seen clients
...
...
src/feature/control/control_events.h
View file @
f8f278f8
...
...
@@ -158,7 +158,7 @@ int control_event_server_error(const char *format, ...)
int
control_event_guard
(
const
char
*
nickname
,
const
char
*
digest
,
const
char
*
status
);
int
control_event_conf_changed
(
const
struct
config_line_t
*
changes
);
void
control_event_conf_changed
(
const
struct
config_line_t
*
changes
);
int
control_event_buildtimeout_set
(
buildtimeout_set_event_t
type
,
const
char
*
args
);
int
control_event_signal
(
uintptr_t
signal
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment