From 766714cf126034fd786ed5fa08d659b2bc28761b Mon Sep 17 00:00:00 2001 From: Frederic Peters Date: Sun, 9 Jan 2005 16:45:46 +0000 Subject: removed hack to get to lib; it doesn't seem to work elsewhere. --- php/tests/perfs.php | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'php') diff --git a/php/tests/perfs.php b/php/tests/perfs.php index 8ef834ff..6a4b2a49 100755 --- a/php/tests/perfs.php +++ b/php/tests/perfs.php @@ -3,11 +3,8 @@ $ret = @dl('lasso.' . PHP_SHLIB_SUFFIX); if ($ret == FALSE) { - $ret = @dl('../.libs/lasso.' . PHP_SHLIB_SUFFIX); - if ($ret == FALSE) { - print "lasso not found\n"; - exit(); - } + print "lasso not found\n"; + exit(1); } function create_authnresponse($query) @@ -54,7 +51,7 @@ printf("Generating 50 AuthnRequest...\n"); for ($i=0; $i < 50; $i++) { $login->initAuthnRequest("https://idp1/metadata", LASSO_HTTP_METHOD_REDIRECT); - $request = $login->authnRequest; + $request = $login->request; $request->ForceAuthn = true; $request->IsPassive = false; $request->NameIDPolicy = LASSO_LIB_NAMEID_POLICY_TYPE_FEDERATED; -- cgit