diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/net_idmap_check.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source3/utils/net_idmap_check.c b/source3/utils/net_idmap_check.c index 7140f4c2a9..88725e18a6 100644 --- a/source3/utils/net_idmap_check.c +++ b/source3/utils/net_idmap_check.c @@ -225,8 +225,13 @@ static char get_action(struct check_action* a, struct record* r, TDB_DATA* v) { d_printf("%s: %s ", a->name, print_data(r, r->key)); if (is_map(r)) { d_printf("-> %s\n", print_data(r, r->val)); - } else { + } else if (r->key_type == DT_HWM || + r->key_type == DT_VER || + r->key_type == DT_SEQ) + { d_printf(": %ld\n", r->id); + } else { + d_printf("\n"); } } else { d_printf(a->fmt, a->name, |