diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-08-02 13:36:55 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-08-02 11:35:19 +0200 |
commit | 64f494de5e8e468a3adde62b02843d734d6cc483 (patch) | |
tree | 18e3e0d0b46b0c202a9ca7ba561b70c616be8a5f | |
parent | e5686a4cf0931d8a89ed8f5922fd00d93b7893ea (diff) | |
download | samba-64f494de5e8e468a3adde62b02843d734d6cc483.tar.gz samba-64f494de5e8e468a3adde62b02843d734d6cc483.tar.bz2 samba-64f494de5e8e468a3adde62b02843d734d6cc483.zip |
s3-pysmbd: fix DEBUG
-rw-r--r-- | source3/smbd/pysmbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/pysmbd.c b/source3/smbd/pysmbd.c index 1f5acea5e4..1dd3d62e19 100644 --- a/source3/smbd/pysmbd.c +++ b/source3/smbd/pysmbd.c @@ -65,7 +65,7 @@ static NTSTATUS set_sys_acl_no_snum(const char *fname, ret = SMB_VFS_SYS_ACL_SET_FILE( conn, fname, acltype, theacl); if (ret != 0) { status = map_nt_error_from_unix_common(ret); - DEBUG(0,("get_nt_acl_no_snum: fset_nt_acl returned zero.\n")); + DEBUG(0,("set_nt_acl_no_snum: fset_nt_acl returned zero.\n")); } conn_free(conn); |