minor simplification of a conditional statement

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@77697 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Luigi Rizzo 2007-07-29 10:49:32 +00:00
parent c19549820e
commit 5e35eab5a2
1 changed files with 1 additions and 4 deletions

View File

@ -18519,10 +18519,7 @@ static int sip_reload(int fd, int argc, char *argv[])
ast_verbose("Previous SIP reload not yet done\n");
else {
sip_reloading = TRUE;
if (fd)
sip_reloadreason = CHANNEL_CLI_RELOAD;
else
sip_reloadreason = CHANNEL_MODULE_RELOAD;
sip_reloadreason = fd ? CHANNEL_CLI_RELOAD : CHANNEL_MODULE_RELOAD;
}
ast_mutex_unlock(&sip_reload_lock);
restart_monitor();