diff options
author | Marat Nepomnyashy <marat@vyatta.com> | 2008-01-03 19:01:08 -0800 |
---|---|---|
committer | Marat Nepomnyashy <marat@vyatta.com> | 2008-01-03 19:01:08 -0800 |
commit | c5c110bcc6439cbd20ff23365c47a66dab196ce5 (patch) | |
tree | 7cff838383f5eaa674b53701026c30ba160f0cac | |
parent | 023345523bf921bfaf3da257b21e2f130c91bbe7 (diff) | |
download | vyatta-op-vpn-c5c110bcc6439cbd20ff23365c47a66dab196ce5.tar.gz vyatta-op-vpn-c5c110bcc6439cbd20ff23365c47a66dab196ce5.zip |
XSL file is passed as arg 0 in Glendale rather than arg 1.
-rw-r--r-- | src/command_proc_show_vpn.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command_proc_show_vpn.cc b/src/command_proc_show_vpn.cc index 328f25d..b81a8ce 100644 --- a/src/command_proc_show_vpn.cc +++ b/src/command_proc_show_vpn.cc @@ -144,7 +144,7 @@ CommandProcShowVPN::process(const string &cmd, bool debug, string &reason) FILE *f; StrProc proc_str(cmd, " "); - _xsl = XSLDIR "/" + proc_str.get(1); + _xsl = XSLDIR "/" + proc_str.get(0); _xml_out << "<opcommand name='vpn'><format type='row'>"; |