diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2009-06-30 15:28:46 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2009-06-30 15:28:46 -0400 |
commit | ad2ef71978bc35e650446a5379a77b640a033470 (patch) | |
tree | d144fcd3ea186ad5985478fab39b2493898ad0bf /config | |
parent | dfd7cb9e45807223b0937b1f0c2727ab85402ce4 (diff) | |
download | pfsense-packages-ad2ef71978bc35e650446a5379a77b640a033470.tar.gz pfsense-packages-ad2ef71978bc35e650446a5379a77b640a033470.tar.bz2 pfsense-packages-ad2ef71978bc35e650446a5379a77b640a033470.zip |
oops, we need to return a filename, not the file contents
Diffstat (limited to 'config')
-rwxr-xr-x | config/openvpn-client-export/openvpn-client-export.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/openvpn-client-export/openvpn-client-export.inc b/config/openvpn-client-export/openvpn-client-export.inc index 16d4de15..5df71645 100755 --- a/config/openvpn-client-export/openvpn-client-export.inc +++ b/config/openvpn-client-export/openvpn-client-export.inc @@ -321,10 +321,10 @@ function viscosity_openvpn_client_config_exporter($srvid, $usrid, $crtid, $usead exec("/usr/local/bin/zip {$tempdir} {$tempdir}.zip"); // Read in file and deliver to client - $outfile = file_get_contents("{$tempdir}.zip"); + $outfile = "{$tempdir}.zip"; // Remove temporary directory - exec("rm -rf {$tempdir} {$tempdir}.zip"); + exec("rm -rf {$tempdir}"); return $outfile; |