Index: uspace/lib/c/generic/io/log.c
===================================================================
--- uspace/lib/c/generic/io/log.c	(revision 1f2dd20bb7535f5d8a3876582e186cb29b7d6453)
+++ uspace/lib/c/generic/io/log.c	(revision ef5be68dd7938b18402735c2a602b0087f9b704c)
@@ -87,4 +87,11 @@
 	async_exchange_end(exchange);
 
+	/*
+	 * Getting ENAK means no-one wants our message. That is not an
+	 * error at all.
+	 */
+	if (rc == ENAK)
+		rc = EOK;
+
 	if (rc != EOK) {
 		return rc;
