diff options
author | Jeremy Allison <jra@samba.org> | 2008-02-22 16:12:57 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2008-02-22 16:12:57 -0800 |
commit | 6cdd527fed86476f9fc86b11cd5d2e7f1067d2e7 (patch) | |
tree | 5791f81e8d973e7ddb9f823164a857cd55637424 | |
parent | 49a367ed32a98c9bf48addfa3a4e16c1d6e444ff (diff) | |
download | samba-6cdd527fed86476f9fc86b11cd5d2e7f1067d2e7.tar.gz samba-6cdd527fed86476f9fc86b11cd5d2e7f1067d2e7.tar.bz2 samba-6cdd527fed86476f9fc86b11cd5d2e7f1067d2e7.zip |
Fix debug messages.
Jeremy.
(This used to be commit d265cedb55b07c6b8a13b9632fbdf8a05fbba886)
-rw-r--r-- | source3/smbd/open.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c index aa4bc48f3d..cc78503379 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -2671,8 +2671,9 @@ NTSTATUS create_file_unixpath(connection_struct *conn, status = split_ntfs_stream_name(talloc_tos(), fname, &base, NULL); if (!NT_STATUS_IS_OK(status)) { - DEBUG(10, ("split_ntfs_stream_name failed: %s\n", - nt_errstr(status))); + DEBUG(10, ("create_file_unixpath: " + "split_ntfs_stream_name failed: %s\n", + nt_errstr(status))); goto fail; } @@ -2840,7 +2841,7 @@ NTSTATUS create_file_unixpath(connection_struct *conn, } } - DEBUG(10, ("create_file: info=%d\n", info)); + DEBUG(10, ("create_file_unixpath: info=%d\n", info)); /* * Set fsp->base_fsp late enough that we can't "goto fail" anymore. In @@ -2867,7 +2868,7 @@ NTSTATUS create_file_unixpath(connection_struct *conn, return NT_STATUS_OK; fail: - DEBUG(10, ("create_file: %s\n", nt_errstr(status))); + DEBUG(10, ("create_file_unixpath: %s\n", nt_errstr(status))); if (fsp != NULL) { close_file(fsp, ERROR_CLOSE); |