Index: uspace/lib/hound/src/client.c
===================================================================
--- uspace/lib/hound/src/client.c	(revision b7fd2a02e4161f4edd38548e7f8456b8021549be)
+++ uspace/lib/hound/src/client.c	(revision fd2b081d8de97242f79fa5909bc672dfc6c0cb79)
@@ -76,5 +76,5 @@
 	hound_sess_t *session;
 	/** context name, reported to the daemon */
-	const char *name;
+	char *name;
 	/** True if the instance is record context */
 	bool record;
@@ -196,5 +196,5 @@
  */
 errno_t hound_context_get_available_targets(hound_context_t *hound,
-    const char ***names, size_t *count)
+    char ***names, size_t *count)
 {
 	assert(hound);
@@ -213,5 +213,5 @@
  */
 errno_t hound_context_get_connected_targets(hound_context_t *hound,
-    const char ***names, size_t *count)
+    char ***names, size_t *count)
 {
 	assert(hound);
@@ -237,5 +237,5 @@
 	assert(target);
 
-	const char **tgt = NULL;
+	char **tgt = NULL;
 	size_t count = 1;
 	errno_t ret = EOK;
Index: uspace/lib/hound/src/protocol.c
===================================================================
--- uspace/lib/hound/src/protocol.c	(revision b7fd2a02e4161f4edd38548e7f8456b8021549be)
+++ uspace/lib/hound/src/protocol.c	(revision fd2b081d8de97242f79fa5909bc672dfc6c0cb79)
@@ -173,5 +173,5 @@
  * @retval Error code.
  */
-errno_t hound_service_get_list(hound_sess_t *sess, const char ***ids, size_t *count,
+errno_t hound_service_get_list(hound_sess_t *sess, char ***ids, size_t *count,
     int flags, const char *connection)
 {
@@ -206,5 +206,5 @@
 
 	/* Start receiving names */
-	const char **names = NULL;
+	char **names = NULL;
 	if (name_count) {
 		size_t *sizes = calloc(name_count, sizeof(size_t));
@@ -446,5 +446,5 @@
 			}
 
-			const char **list = NULL;
+			char **list = NULL;
 			const int flags = IPC_GET_ARG1(call);
 			size_t count = IPC_GET_ARG2(call);
