diff options
| author | Sachidananda <sac@gluster.com> | 2010-08-17 05:19:04 +0000 | 
|---|---|---|
| committer | Anand V. Avati <avati@dev.gluster.com> | 2010-08-22 22:27:35 -0700 | 
| commit | 37ec7db018979d04d02ae5670b53dbed7a498ba8 (patch) | |
| tree | 741af2268e4704246741c1e91431234a2f4142ae /xlators/nfs | |
| parent | 8f18a47a14ffc4456e470b15f6ad14f9dd10cd79 (diff) | |
xlators/nfs: nfs3-helpers.c remove dead assignments.
Signed-off-by: Sachidananda Urs <sac@gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 1115 ()
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1115
Diffstat (limited to 'xlators/nfs')
| -rw-r--r-- | xlators/nfs/server/src/nfs3-helpers.c | 14 | 
1 files changed, 7 insertions, 7 deletions
diff --git a/xlators/nfs/server/src/nfs3-helpers.c b/xlators/nfs/server/src/nfs3-helpers.c index 35f5853255e..feeeda08bd8 100644 --- a/xlators/nfs/server/src/nfs3-helpers.c +++ b/xlators/nfs/server/src/nfs3-helpers.c @@ -2811,15 +2811,15 @@ nfs3_fh_resolve_check_response (nfs3_call_state_t *cs, gf_dirent_t *candidate,          dirgen = cs->resolvedloc.inode->generation;          if (response == GF_NFS3_FHRESOLVE_DIRFOUND) -                ret = nfs3_fh_resolve_dir_hard (cs, dirino, dirgen, -                                                candidate->d_name); +                nfs3_fh_resolve_dir_hard (cs, dirino, dirgen, +                                          candidate->d_name);          else if (response == GF_NFS3_FHRESOLVE_FOUND)                  nfs3_fh_resolve_found (cs, candidate);          else if (response == GF_NFS3_FHRESOLVE_NOTFOUND) {                  nfs_user_root_create (&nfu); -                ret = nfs_readdirp (cs->nfsx, cs->vol, &nfu, cs->resolve_dir_fd, -                                    GF_NFS3_DTPREF, last_offt, -                                    nfs3_fh_resolve_readdir_cbk, cs); +                nfs_readdirp (cs->nfsx, cs->vol, &nfu, cs->resolve_dir_fd, +                              GF_NFS3_DTPREF, last_offt, +                              nfs3_fh_resolve_readdir_cbk, cs);          }          return 0; @@ -2946,8 +2946,8 @@ nfs3_fh_resolve_entry_hard (nfs3_call_state_t *cs)          if (ret == -2) {                  gf_log (GF_NFS3, GF_LOG_TRACE, "Entry needs lookup: %s",                          cs->resolvedloc.path); -                ret = nfs_lookup (cs->nfsx, cs->vol, &nfu, &cs->resolvedloc, -                                  nfs3_fh_resolve_entry_lookup_cbk, cs); +                nfs_lookup (cs->nfsx, cs->vol, &nfu, &cs->resolvedloc, +                            nfs3_fh_resolve_entry_lookup_cbk, cs);                  ret = 0;          } else if (ret == -1) {                  gf_log (GF_NFS3, GF_LOG_TRACE, "Entry needs parent lookup: %s",  | 
