From cfebba96bdab2097b6115f10b649ec6c23c72519 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 10 Jan 2012 13:56:37 +0100 Subject: s3: Put an indirection layer into share_mode_lock Signed-off-by: Jeremy Allison --- source3/utils/status.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'source3/utils/status.c') diff --git a/source3/utils/status.c b/source3/utils/status.c index 76f6167570..8ae8de76a3 100644 --- a/source3/utils/status.c +++ b/source3/utils/status.c @@ -212,11 +212,13 @@ static void print_brl(struct file_id id, share_mode = fetch_share_mode_unlocked(NULL, id); if (share_mode) { - bool has_stream = share_mode->stream_name != NULL; + bool has_stream = share_mode->data->stream_name != NULL; - fname = talloc_asprintf(NULL, "%s%s%s", share_mode->base_name, + fname = talloc_asprintf(NULL, "%s%s%s", + share_mode->data->base_name, has_stream ? ":" : "", - has_stream ? share_mode->stream_name : + has_stream ? + share_mode->data->stream_name : ""); } else { fname = talloc_strdup(NULL, ""); -- cgit