diff options
Diffstat (limited to 'test/get-dropboxes')
-rwxr-xr-x | test/get-dropboxes | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/get-dropboxes b/test/get-dropboxes index b8a5266..89a4935 100755 --- a/test/get-dropboxes +++ b/test/get-dropboxes @@ -33,15 +33,15 @@ my $type = $ARGV[2]; my @dropboxes = (); -my ($dbh, $status, $errorstring) = RHRD::rddb::opendb(); -if(defined $dbh) { - @dropboxes = RHRD::rddb::get_dropboxes($dbh, $username, $groupname, $type); +my ($ctx, $status, $errorstring) = RHRD::rddb::init(); +if(defined $ctx) { + @dropboxes = RHRD::rddb::get_dropboxes($ctx, $username, $groupname, $type); if(!defined $dropboxes[0] && defined $dropboxes[1]) { print STDERR "$dropboxes[1]: $dropboxes[2]"; - RHRD::rddb::closedb($dbh); + RHRD::rddb::destroy($ctx); exit 1; } - RHRD::rddb::closedb($dbh); + RHRD::rddb::destroy($ctx); } else { print STDERR "$errorstring\n"; exit 1; |