diff options
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/open.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c index 9601329b9e..4e91cdfd2a 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -475,8 +475,8 @@ static void validate_my_share_entries(int num, if (is_deferred_open_entry(share_entry) && !open_was_deferred(share_entry->op_mid)) { pstring str; - DEBUG(0, ("Got a deferred entry without a request: " - "PANIC: %s\n", share_mode_str(num, share_entry))); + pstr_sprintf(str, "Got a deferred entry without a request: " + "PANIC: %s\n", share_mode_str(num, share_entry)); smb_panic(str); } |