diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-15 00:44:55 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-15 00:44:55 +0200 |
commit | 7caf011b9aa8fba455a528dac694a3d5eb697547 (patch) | |
tree | 765853279d4bfd460370d8a49a96393b5554b9c2 /tests/preseed-config.php | |
parent | bf99d9233c52f1af314d3e634456df8ba032e7ba (diff) | |
download | nextcloud-server-7caf011b9aa8fba455a528dac694a3d5eb697547.tar.gz nextcloud-server-7caf011b9aa8fba455a528dac694a3d5eb697547.zip |
fixing syntax for openssl config
Diffstat (limited to 'tests/preseed-config.php')
-rw-r--r-- | tests/preseed-config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/preseed-config.php b/tests/preseed-config.php index 6210aa875ab..95ffb4514bf 100644 --- a/tests/preseed-config.php +++ b/tests/preseed-config.php @@ -20,5 +20,5 @@ $CONFIG = array ( ); if(substr(strtolower(PHP_OS), 0, 3) == "win") { - $CONFIG['openssl'] = OC::$SERVERROOT.'/tests/data/openssl.cnf'; + $CONFIG['openssl'] = array( 'config' => OC::$SERVERROOT.'/tests/data/openssl.cnf'); } |