summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchotaire <chotaire@chotaire.net>2020-01-29 12:18:47 +0100
committerchotaire <chotaire@chotaire.net>2020-01-29 12:18:47 +0100
commit870373b8419c4de6f99c1bc6d87ab52bd99bc89a (patch)
treec22a51df6aaff3265504d1401771dd199755b87c
parent9bb87a276930ca041846e9b0afe2fff4046b54f4 (diff)
downloadphpvirtualbox-870373b8419c4de6f99c1bc6d87ab52bd99bc89a.zip
phpvirtualbox-870373b8419c4de6f99c1bc6d87ab52bd99bc89a.tar.gz
phpvirtualbox-870373b8419c4de6f99c1bc6d87ab52bd99bc89a.tar.bz2
Fixed typo (thanks to trasherdk)
-rw-r--r--endpoints/lib/vboxconnector.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/endpoints/lib/vboxconnector.php b/endpoints/lib/vboxconnector.php
index c9f38df..9691cfc 100644
--- a/endpoints/lib/vboxconnector.php
+++ b/endpoints/lib/vboxconnector.php
@@ -428,11 +428,11 @@ class vboxconnector {
// Machine powered off or client has stale MO reference
if($listener)
- try { $listener->releaseRemote(); } catch (Exceptoin $e) {
+ try { $listener->releaseRemote(); } catch (Exception $e) {
/// pass
}
if($source)
- try { $source->releaseRemote(); } catch (Exceptoin $e) {
+ try { $source->releaseRemote(); } catch (Exception $e) {
// pass
}