]> git.ipfire.org Git - thirdparty/krb5.git/commit
Fix misleading indentation in clnt_udp.c 846/head
authorRobbie Harwood <rharwood@redhat.com>
Tue, 18 Sep 2018 18:19:55 +0000 (14:19 -0400)
committerGreg Hudson <ghudson@mit.edu>
Wed, 19 Sep 2018 16:20:56 +0000 (12:20 -0400)
commit20b2a9980e6f2d62875502dfb5c3cb64e17df41b
treead5fffaf0778eacb765e7d66c8bb25db6dea1b93
parent288cbada833dc6af7d43dd308563b48b73347dfb
Fix misleading indentation in clnt_udp.c

gcc warns that the `if` statement doesn't guard the length
assignment, which is true.  However, it wouldn't make sense for the
length assignment to be guarded by the `if` clause anyway, since the
previous statement is a `goto`.  De-indent for clarity.
src/lib/rpc/clnt_udp.c