diff options
author | Michael Larson <slioch@slioch.vyatta.com> | 2010-06-02 11:40:44 -0700 |
---|---|---|
committer | Michael Larson <slioch@slioch.vyatta.com> | 2010-06-02 11:40:44 -0700 |
commit | 0075f296034d15591c8127022ceb29c9ecb18850 (patch) | |
tree | b4974ade01c73d4d10f3a1a3bf660f265c3376cc /src/cli_new.c | |
parent | 364bdfd2b86bfd76cd71d7a4cef7452a21ce4835 (diff) | |
download | vyatta-cfg-0075f296034d15591c8127022ceb29c9ecb18850.tar.gz vyatta-cfg-0075f296034d15591c8127022ceb29c9ecb18850.zip |
Additional fix to cli_new.c on arg.
Diffstat (limited to 'src/cli_new.c')
-rw-r--r-- | src/cli_new.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli_new.c b/src/cli_new.c index 621b634..50655b6 100644 --- a/src/cli_new.c +++ b/src/cli_new.c @@ -2410,7 +2410,7 @@ is_deactivated(const clind_path_ref *path,const char *symbol) return FALSE; } - const char* path_string = clind_path_get_path_string(path); + const char* path_string = clind_path_get_path_string(*path); char buf[1024]; //ALSO USED AS LIMIT IN UNIONFS path length strcpy(buf,path_string); |