From: NeilBrown Date: Thu, 12 Aug 2010 07:04:07 +0000 (+1000) Subject: svcauth_gss: replace a trivial 'switch' with an 'if' X-Git-Tag: v2.6.37-rc1~113^2~88 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ed5282cd9b44686a6e718269abb5c5cd332d8f1;p=pandora-kernel.git svcauth_gss: replace a trivial 'switch' with an 'if' Code like: switch(xxx) { case -error1: case -error2: .. return; case 0: stuff; } can more naturally be written: if (xxx < 0) return; stuff; Signed-off-by: NeilBrown Signed-off-by: J. Bruce Fields --- Reading git-diff-tree failed