This is an automated email from the git hooks/post-receive script.
teigland pushed a commit to branch master in repository sanlock.
The following commit(s) were added to refs/heads/master by this push: new 1aeabc3 sanlock: use host_state_str to print flags 1aeabc3 is described below
commit 1aeabc397d3aab235534310c7fa600fd3f292eaf Author: David Teigland teigland@redhat.com AuthorDate: Mon Mar 17 13:32:11 2025 -0500
sanlock: use host_state_str to print flags --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main.c b/src/main.c index f9fa3b0..b77e51e 100644 --- a/src/main.c +++ b/src/main.c @@ -3516,9 +3516,9 @@ static int do_client(void)
if (rv < 0) { if (com.get_hosts && (owner.host_id || owner_name)) { - log_tool("owner: host_id %llu generation %llu timestamp %llu flags %x name %s", + log_tool("owner: host_id %llu generation %llu timestamp %llu state %s name %s", (unsigned long long)owner.host_id, (unsigned long long)owner.generation, - (unsigned long long)owner.timestamp, owner.flags, owner_name); + (unsigned long long)owner.timestamp, host_state_str(owner.flags), owner_name); if (owner_name) free(owner_name); }
sanlock-devel@lists.fedorahosted.org