diff options
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/net_g_lock.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/utils/net_g_lock.c b/source3/utils/net_g_lock.c index b9d99160bc..e51a1ae28d 100644 --- a/source3/utils/net_g_lock.c +++ b/source3/utils/net_g_lock.c @@ -114,9 +114,8 @@ static int net_g_lock_dump_fn(struct server_id pid, enum g_lock_type lock_type, char *pidstr; pidstr = server_id_str(talloc_tos(), &pid); - d_printf("%s: %s (%s)\n", pidstr, - (lock_type & 1) ? "WRITE" : "READ", - (lock_type & G_LOCK_PENDING) ? "pending" : "holder"); + d_printf("%s: %s\n", pidstr, + (lock_type & 1) ? "WRITE" : "READ"); TALLOC_FREE(pidstr); return 0; } |