From: Luigi Rizzo Date: Sun, 29 Jul 2007 10:49:32 +0000 (+0000) Subject: minor simplification of a conditional statement X-Git-Tag: 1.6.0-beta1~3^2~1881 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5e35eab5a2a4def8890547a29ba21fda4d1da9d7;p=thirdparty%2Fasterisk.git minor simplification of a conditional statement git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@77697 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 894d74f64c..8827d7b404 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -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();