summaryrefslogtreecommitdiffstats
path: root/source3/modules
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2009-10-02 11:05:03 -0700
committerKarolin Seeger <kseeger@samba.org>2009-11-26 11:38:58 +0100
commit811660e46c6891be158368f0e254a83bd148b93e (patch)
treec963bf25ec18e156435104875da2be08efce9bb6 /source3/modules
parent7f6e4312c5fa2c338102fdbac049db12472272d6 (diff)
downloadsamba-811660e46c6891be158368f0e254a83bd148b93e.tar.gz
samba-811660e46c6891be158368f0e254a83bd148b93e.tar.xz
samba-811660e46c6891be158368f0e254a83bd148b93e.zip
Fix more use of VFS_STAT when posix pathnames selected.
Jeremy. (cherry picked from commit 8b5fddf729d73fa2c0e4496fa5aa0d1093c70a05)
Diffstat (limited to 'source3/modules')
-rw-r--r--source3/modules/nfs4_acls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/nfs4_acls.c b/source3/modules/nfs4_acls.c
index cf96061ea63..658f2b4e8de 100644
--- a/source3/modules/nfs4_acls.c
+++ b/source3/modules/nfs4_acls.c
@@ -170,7 +170,7 @@ static int smbacl4_GetFileOwner(struct connection_struct *conn,
/* Get the stat struct for the owner info. */
if (vfs_stat_smb_fname(conn, filename, psbuf) != 0)
{
- DEBUG(8, ("SMB_VFS_STAT failed with error %s\n",
+ DEBUG(8, ("vfs_stat_smb_fname failed with error %s\n",
strerror(errno)));
return -1;
}