[libvirt] [libvirt-php] [PATCH] libvirt_domain_update_device() not defined

This patch makes libvirt_domain_update_device() available within PHP. Previously it simply threw an error for undefinded function. Katelyn Schiesser (1): Make libvirt_domain_update_device() available. src/libvirt-php.c | 1 + 1 file changed, 1 insertion(+) -- 1.7.11.3

--- src/libvirt-php.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libvirt-php.c b/src/libvirt-php.c index f44075f..a0733fc 100644 --- a/src/libvirt-php.c +++ b/src/libvirt-php.c @@ -123,6 +123,7 @@ static zend_function_entry libvirt_functions[] = { PHP_FE(libvirt_domain_get_screen_dimensions, NULL) PHP_FE(libvirt_domain_send_keys, NULL) PHP_FE(libvirt_domain_send_pointer_event, NULL) + PHP_FE(libvirt_domain_update_device, NULL) /* Domain snapshot functions */ PHP_FE(libvirt_domain_has_current_snapshot, NULL) PHP_FE(libvirt_domain_snapshot_create, NULL) -- 1.7.11.3
participants (1)
-
Katelyn Schiesser