From e152eea21819cb31e6da779b06ae1b6df7270bb1 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Fri, 23 Sep 2016 19:06:32 +0200 Subject: [PATCH] build: fix breakage of enums-to-docbook.pl script for NMCapability enum GEN nm-dbus-types.xml Documentation for value '*' missing at ../tools/enums-to-docbook.pl line 134, <> line 95. Makefile:1579: recipe for target 'nm-dbus-types.xml' failed Fixes: 93a753e31109997e4f00427db4f8a99a79a8f354 --- libnm-core/nm-dbus-interface.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libnm-core/nm-dbus-interface.h b/libnm-core/nm-dbus-interface.h index e7fe39b55f..98c9860eaf 100644 --- a/libnm-core/nm-dbus-interface.h +++ b/libnm-core/nm-dbus-interface.h @@ -88,14 +88,14 @@ * @NM_CAPABILITY_TEAM: Teams can be managed * * #NMCapability names the numbers in the Capabilities property. - **/ + * Capabilities are positive numbers. They are part of stable API + * and a certain capability number is guaranteed not to change. + * + * The range 0x7000 - 0x7FFF of capabilities is guaranteed not to be + * used by upstream NetworkManager. It could thus be used for downstream + * extensions. + */ typedef enum { - /* Capabilities are positive numbers. They are part of stable API - * and a certain capability number is guaranteed not to change. - * - * The range 0x7000 - 0x7FFF of capabilities is guaranteed not to be - * used by upstream NetworkManager. It could thus be used for downstream - * extensions. */ NM_CAPABILITY_TEAM = 1, } NMCapability;