diff options
author | Raghavendra G <raghavendra@gluster.com> | 2009-10-08 05:59:49 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2009-10-08 07:53:36 -0700 |
commit | c74e5ac0a26ad217edc2f6ba1ed4bb0511e49084 (patch) | |
tree | 36e9f0924e27e99871921e2430e77654963fb62c /libglusterfs/src/defaults.c | |
parent | adc495298c22fa3463cdd46a5e3def37878f28bb (diff) |
libglusterfs/defaults: default_readdirp should call fops->readdirp instead of fops->readdir.
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 292 (Separate readdirp functionality from readdir fop)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=292
Diffstat (limited to 'libglusterfs/src/defaults.c')
-rw-r--r-- | libglusterfs/src/defaults.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libglusterfs/src/defaults.c b/libglusterfs/src/defaults.c index ebf96c6aa..3aff664d7 100644 --- a/libglusterfs/src/defaults.c +++ b/libglusterfs/src/defaults.c @@ -1374,7 +1374,7 @@ default_readdirp (call_frame_t *frame, STACK_WIND (frame, default_readdirp_cbk, FIRST_CHILD(this), - FIRST_CHILD(this)->fops->readdir, + FIRST_CHILD(this)->fops->readdirp, fd, size, off); return 0; } |