diff options
author | Anand Avati <avati@redhat.com> | 2012-10-02 15:07:01 -0700 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2012-10-03 14:53:57 -0700 |
commit | 43514de5c0bf498a774bb197e5ab8c0833e72b70 (patch) | |
tree | 79ef3d2edb33ed9ca9b508bdbd7934649c74f711 /libglusterfs/src/syncop.c | |
parent | 5f423c68a119c2de9c092b4cc71aba02cde4d566 (diff) |
syncop: fix symlink param
make syncop_symlink() accept 'const char *linkname' instead of
'char *linkname'
Change-Id: I7751d552e4a4cc6e8b8e587b9e520213f4e11b45
BUG: 839950
Signed-off-by: Anand Avati <avati@redhat.com>
Reviewed-on: http://review.gluster.org/4020
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Amar Tumballi <amarts@redhat.com>
Diffstat (limited to 'libglusterfs/src/syncop.c')
-rw-r--r-- | libglusterfs/src/syncop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libglusterfs/src/syncop.c b/libglusterfs/src/syncop.c index 7dbaac6fb1f..07823ccb133 100644 --- a/libglusterfs/src/syncop.c +++ b/libglusterfs/src/syncop.c @@ -1465,7 +1465,7 @@ syncop_symlink_cbk (call_frame_t *frame, void *cookie, xlator_t *this, } int -syncop_symlink (xlator_t *subvol, loc_t *loc, char *newpath, dict_t *dict) +syncop_symlink (xlator_t *subvol, loc_t *loc, const char *newpath, dict_t *dict) { struct syncargs args = {0, }; |