summaryrefslogtreecommitdiffstats
path: root/libglusterfs/src/dict.c
diff options
context:
space:
mode:
authorJunaid <junaid@gluster.com>2011-04-12 08:11:32 +0000
committerAnand Avati <avati@gluster.com>2011-04-12 21:49:48 -0700
commit1b18a7d64574ca08b937113fcb19b9d851abd43c (patch)
treeac0979a14f7bb2448ba5cf645f134071a12b5add /libglusterfs/src/dict.c
parent214ceccb0758e62724dc2548d140aff5885391a0 (diff)
libglusterfs/dict: Donot perform NULL check on data in dict_foreach
Signed-off-by: Junaid <junaid@gluster.com> Signed-off-by: Anand Avati <avati@gluster.com> BUG: 1816 (send volume options in friend add) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1816
Diffstat (limited to 'libglusterfs/src/dict.c')
-rw-r--r--libglusterfs/src/dict.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libglusterfs/src/dict.c b/libglusterfs/src/dict.c
index 56ea68cd0..c8f43e316 100644
--- a/libglusterfs/src/dict.c
+++ b/libglusterfs/src/dict.c
@@ -1184,9 +1184,9 @@ dict_foreach (dict_t *dict,
void *data),
void *data)
{
- if (!data || !dict) {
+ if (!dict) {
gf_log_callingfn ("dict", GF_LOG_WARNING,
- "data OR dict is NULL");
+ "dict is NULL");
return;
}