diff options
author | Volker Lendecke <vl@samba.org> | 2011-02-23 13:25:12 +0100 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2011-02-23 14:12:39 +0100 |
commit | 148252331ab7f236858febb9bfc52c66ea8a2ff3 (patch) | |
tree | c296ac221b72fa74b96d008da469bd5329d85f92 /source3/modules | |
parent | 110f11d1365367555ebe1cbe3cc8b61b081a4cdd (diff) | |
download | samba-148252331ab7f236858febb9bfc52c66ea8a2ff3.tar.gz samba-148252331ab7f236858febb9bfc52c66ea8a2ff3.tar.bz2 samba-148252331ab7f236858febb9bfc52c66ea8a2ff3.zip |
s3: Improve an error msg in vfs_gpfs
Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Wed Feb 23 14:12:39 CET 2011 on sn-devel-104
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_gpfs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c index bc634b16e2..462e3c55f1 100644 --- a/source3/modules/vfs_gpfs.c +++ b/source3/modules/vfs_gpfs.c @@ -1026,7 +1026,8 @@ static ssize_t gpfs_get_xattr(struct vfs_handle_struct *handle, const char *pat size); } - DEBUG(1, ("gpfs_get_xattr: Get GPFS attributes failed: %d\n",ret)); + DEBUG(1, ("gpfs_get_xattr: Get GPFS attributes failed: " + "%d (%s)\n", ret, strerror(errno))); return -1; } |