diff options
| -rw-r--r-- | usr/src/cmd/idmap/idmap/idmap.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr/src/cmd/idmap/idmap/idmap.c b/usr/src/cmd/idmap/idmap/idmap.c index 3be65fd6d9..64644f4aae 100644 --- a/usr/src/cmd/idmap/idmap/idmap.c +++ b/usr/src/cmd/idmap/idmap/idmap.c @@ -1204,7 +1204,7 @@ print_mapping(print_handle_t *pnm, name_mapping_t *nm) free(winname); return (-1); } - /* LINTED E_CASE_FALLTHRU */ + /* FALLTHROUGH */ case MAPPING_ID: if (pnm->format == MAPPING_ID) { if (nm->sidprefix == NULL) { @@ -2339,7 +2339,8 @@ print_flags(flag_t *f) /* Convert string like sid or winname to the identity type code */ static int -string2type(char *str, cmd_pos_t *pos) { +string2type(char *str, cmd_pos_t *pos) +{ int i; int code = TYPE_INVALID; |
