summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2016-09-23 19:06:32 +0200
committerThomas Haller <thaller@redhat.com>2016-09-23 19:11:45 +0200
commite152eea21819cb31e6da779b06ae1b6df7270bb1 (patch)
tree5a97fd36e56af372e80f48d89ccb6177213d444d
parent0e96d2373393f0bafc50001cfc2a3049c0454f72 (diff)
downloadNetworkManager-e152eea21819cb31e6da779b06ae1b6df7270bb1.tar.gz
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
-rw-r--r--libnm-core/nm-dbus-interface.h14
1 files 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;