diff options
| author | Kaushik BV <kaushikbv@gluster.com> | 2011-08-20 05:46:17 +0530 | 
|---|---|---|
| committer | Vijay Bellur <vijay@gluster.com> | 2011-08-19 22:48:49 -0700 | 
| commit | ec5f1f08304bf40ca552f027d92ed1b37b7f5b15 (patch) | |
| tree | 0de8753ab7cc0276ec3b0a6edffd2972907d9757 | |
| parent | 71da619ab57bd7913f6fffce3be7e77c5a4db0d2 (diff) | |
mgmt/glusterd: Fix the string to be parsed by the nfs option handler of volgen-engine
Change-Id: I9e86b472500b59fb220c7589fd00fa9fffdca9c5
BUG: 3414
Reviewed-on: http://review.gluster.com/272
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vijay@gluster.com>
| -rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-volgen.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-volgen.c b/xlators/mgmt/glusterd/src/glusterd-volgen.c index 2fe182941..da93b448f 100644 --- a/xlators/mgmt/glusterd/src/glusterd-volgen.c +++ b/xlators/mgmt/glusterd/src/glusterd-volgen.c @@ -1971,7 +1971,7 @@ nfs_option_handler (volgen_graph_t *graph,                          return -1;          } -        if (! strcmp (vme->option, "!rpc-auth.addr.%s.reject")) { +        if (! strcmp (vme->option, "!rpc-auth.addr.*.reject")) {                  ret = gf_asprintf (&aa, "rpc-auth.addr.%s.reject",                                          volinfo->volname); @@ -2009,7 +2009,7 @@ nfs_option_handler (volgen_graph_t *graph,                          return -1;          } -        if (! strcmp (vme->option, "!nfs3.%s.trusted-sync")) { +        if (! strcmp (vme->option, "!nfs3.*.trusted-sync")) {                  ret = gf_asprintf (&aa, "nfs3.%s.trusted-sync",                                          volinfo->volname);  | 
