Lans Zhang <jia.zhang at windriver.com> wrote: > - } else { > - auth = sig->auth_ids[1]; > + } else if ((auth = sig->auth_ids[1])) { Better to say: } else if (auth) { auth = sig->auth_ids[1]; David
Lans Zhang <jia.zhang at windriver.com> wrote: > - } else { > - auth = sig->auth_ids[1]; > + } else if ((auth = sig->auth_ids[1])) { Better to say: } else if (auth) { auth = sig->auth_ids[1]; David