From 868f83e5c6c1c904609be8d15e7c569b05c78ea3 Mon Sep 17 00:00:00 2001 From: Christof Schmitt Date: Fri, 27 Mar 2015 13:16:41 -0700 Subject: [PATCH] vfs_gpfs: Remove warning after failure of get_gpfs_fset_id get_gpfs_fset_id already emits more detailed warnings, there is no need to print an additional warning in the calling function. Signed-off-by: Christof Schmitt Reviewed-by: David Disseldorp --- source3/modules/vfs_gpfs.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c index 8d9d897702c..2044a0ef1ff 100644 --- a/source3/modules/vfs_gpfs.c +++ b/source3/modules/vfs_gpfs.c @@ -2145,8 +2145,6 @@ static int vfs_gpfs_get_quotas(const char *path, uid_t uid, gid_t gid, err = get_gpfs_fset_id(dir_path, fset_id); if (err) { - DEBUG(0, ("Get fset id failed path %s, dir %s, errno %d.\n", - path, dir_path, errno)); return err; } -- 2.45.1