Skip to content

Commit

Permalink
Add quotes around 'callback address' field.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrimesix committed Aug 8, 2024
1 parent 48da004 commit 5c011ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/nfsd/nfs4state.c
Original file line number Diff line number Diff line change
Expand Up @@ -2541,7 +2541,7 @@ static int client_info_show(struct seq_file *m, void *v)
clp->cl_nii_time.tv_sec, clp->cl_nii_time.tv_nsec);
}
seq_printf(m, "callback state: %s\n", cb_state2str(clp->cl_cb_state));
seq_printf(m, "callback address: %pISpc\n", &clp->cl_cb_conn.cb_addr);
seq_printf(m, "callback address: \"%pISpc\"\n", &clp->cl_cb_conn.cb_addr);
drop_client(clp);

return 0;
Expand Down

0 comments on commit 5c011ad

Please sign in to comment.