All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] dbus: Make _dbus_num_children a dbus-private function
@ 2016-04-22  0:57 Andrew Zaborowski
  2016-04-22  0:57 ` [PATCH 2/2] dbus: Check that property signature has one data type Andrew Zaborowski
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Andrew Zaborowski @ 2016-04-22  0:57 UTC (permalink / raw)
  To: ell

[-- Attachment #1: Type: text/plain, Size: 1008 bytes --]

---
 ell/dbus-private.h | 1 +
 ell/dbus-util.c    | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/ell/dbus-private.h b/ell/dbus-private.h
index 6f39a2d..be43aba 100644
--- a/ell/dbus-private.h
+++ b/ell/dbus-private.h
@@ -156,6 +156,7 @@ const char *_dbus_signature_end(const char *signature);
 
 bool _dbus_valid_object_path(const char *path);
 bool _dbus_valid_signature(const char *sig);
+int _dbus_num_children(const char *sig);
 bool _dbus_valid_interface(const char *interface);
 bool _dbus_valid_method(const char *method);
 bool _dbus_parse_unique_name(const char *name, uint64_t *out_id);
diff --git a/ell/dbus-util.c b/ell/dbus-util.c
index 4d79d11..6414216 100644
--- a/ell/dbus-util.c
+++ b/ell/dbus-util.c
@@ -249,7 +249,7 @@ bool _dbus_valid_signature(const char *sig)
 	return true;
 }
 
-static int _dbus_num_children(const char *sig)
+int _dbus_num_children(const char *sig)
 {
 	const char *s = sig;
 	int num_children = 0;
-- 
2.5.0


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2016-04-22  2:24 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-22  0:57 [PATCH 1/2] dbus: Make _dbus_num_children a dbus-private function Andrew Zaborowski
2016-04-22  0:57 ` [PATCH 2/2] dbus: Check that property signature has one data type Andrew Zaborowski
2016-04-22  2:21   ` Denis Kenzior
2016-04-22  0:57 ` [PATCH v4] dbus: Remove signature field from gvariant header Andrew Zaborowski
2016-04-22  2:22   ` Denis Kenzior
2016-04-22  0:57 ` [PATCH v2 1/2] dbus: Add private _dbus_message_new_error Andrew Zaborowski
2016-04-22  2:24   ` Denis Kenzior
2016-04-22  2:20 ` [PATCH 1/2] dbus: Make _dbus_num_children a dbus-private function Denis Kenzior

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.