diff options
author | Ben Kaduk <kaduk@mit.edu> | 2013-10-30 14:51:12 -0400 |
---|---|---|
committer | Ben Kaduk <kaduk@mit.edu> | 2013-11-04 13:51:17 -0500 |
commit | 3a8eaa43045fb242739ad9729bb66f915be209b9 (patch) | |
tree | 6a0a8a0ab74adda71b764724a0d8f3466c9dbcee /src/lib/krb5/unicode | |
parent | 4547a1078afdeeb781307cf4a125baccf2edab02 (diff) | |
download | krb5-3a8eaa43045fb242739ad9729bb66f915be209b9.tar.gz krb5-3a8eaa43045fb242739ad9729bb66f915be209b9.tar.xz krb5-3a8eaa43045fb242739ad9729bb66f915be209b9.zip |
Clean up the code to eliminate some clang warnings
In ure.c, though k is a short, the literal 1 is of type 'int', and
so the operation 'k + 1' is performed at the (32-bit) width of int,
and therefore the "%d" format string is correct.
In accept_sec_context.c, the 'length' field of krb5_data is an
unsigned type, so checking for a negative value has no effect.
In net-server.c, the helper routine rtm_type_name() is only used
in code that is disabled with #if 0 conditionals; make the
definition also disabled in the same way to avoid warnings of an
unused function.
In kdc_authdata.c, equality checks in double parentheses elicit
a warning from clang. The double-parentheses idiom is normally used
to indicate that an assignment is being performed, but the value of
the assignment is also to be used as the value for the conditional.
Since assignment and equality checking differ only by a single
character, clang considers this worthy of a warning. Since the extra
set of parentheses is redundant and against style, it is correct to
remove them.
In several places (sim_server.c, dump.c, kdb5_destroy.c,
ovsec_kadmd.c), there are declarations of extern variables relating
to getopt() functionality that are now unused in the code. Remove
these unused variables.
Diffstat (limited to 'src/lib/krb5/unicode')
-rw-r--r-- | src/lib/krb5/unicode/ure/ure.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/krb5/unicode/ure/ure.c b/src/lib/krb5/unicode/ure/ure.c index 91ef7c95b..b3fa986bd 100644 --- a/src/lib/krb5/unicode/ure/ure.c +++ b/src/lib/krb5/unicode/ure/ure.c @@ -1864,7 +1864,7 @@ ure_write_dfa(ure_dfa_t dfa, FILE *out) if (sym->props & (1 << k)) { if (h != 0) putc(',', out); - fprintf(out, "%hd", k + 1); + fprintf(out, "%d", k + 1); h = 1; } } |