diff options
author | Volker Lendecke <vl@samba.org> | 2009-09-24 13:11:14 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-09-24 13:11:46 +0200 |
commit | 50f248a06c5e381fe36bcab2842322f78a469bb7 (patch) | |
tree | 974704df15bec3b8e2ee7038ce688846c3138ba1 | |
parent | 69447de175a8bc82280e59b63b336f4fcb0092d2 (diff) | |
download | samba-50f248a06c5e381fe36bcab2842322f78a469bb7.tar.gz samba-50f248a06c5e381fe36bcab2842322f78a469bb7.tar.bz2 samba-50f248a06c5e381fe36bcab2842322f78a469bb7.zip |
s3: Forgot to check in one build failure for vfs_gpfs.c
-rw-r--r-- | source3/modules/vfs_gpfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c index 5616cae2df..c1131a92b9 100644 --- a/source3/modules/vfs_gpfs.c +++ b/source3/modules/vfs_gpfs.c @@ -1084,7 +1084,7 @@ static int vfs_gpfs_ntimes(struct vfs_handle_struct *handle, } status = get_full_smb_filename(talloc_tos(), smb_fname, &path); - if (!NT_STATUS_IS_OK) { + if (!NT_STATUS_IS_OK(status)) { errno = map_errno_from_nt_status(status); return -1; } |