device_link_service: send version number with VersionsOk message

[#108 state:resolved]
diff --git a/src/device_link_service.c b/src/device_link_service.c
index e1155a5..b7d9ee8 100644
--- a/src/device_link_service.c
+++ b/src/device_link_service.c
@@ -193,6 +193,7 @@
 	array = plist_new_array();
 	plist_array_append_item(array, plist_new_string("DLMessageVersionExchange"));
 	plist_array_append_item(array, plist_new_string("DLVersionsOk"));
+	plist_array_append_item(array, plist_new_uint(version_major));
 	if (property_list_service_send_binary_plist(client->parent, array) != PROPERTY_LIST_SERVICE_E_SUCCESS) {
 		debug_info("Error when sending DLVersionsOk");
 		err = DEVICE_LINK_SERVICE_E_MUX_ERROR;