Index: uspace/app/netecho/print_error.c
===================================================================
--- uspace/app/netecho/print_error.c	(revision dd5046dd1beda773c101cd57515df9157d461a36)
+++ uspace/app/netecho/print_error.c	(revision da9f13f3ef534b7316a41e47bd84997075a93a3f)
@@ -164,5 +164,5 @@
 	case EDESTADDRREQ:
 		fprintf(output, "Destination address required (%d) error", error_code);
-	case TRY_AGAIN:
+	case EAGAIN:
 		fprintf(output, "Try again (%d) error", error_code);
 	default:
Index: uspace/lib/c/include/errno.h
===================================================================
--- uspace/lib/c/include/errno.h	(revision dd5046dd1beda773c101cd57515df9157d461a36)
+++ uspace/lib/c/include/errno.h	(revision da9f13f3ef534b7316a41e47bd84997075a93a3f)
@@ -83,8 +83,6 @@
 #define ENOTCONN	(-10057)
 
-/** The requested operation was not performed.
- *  Try again later.
- */
-#define TRY_AGAIN	(-11002)
+/** The requested operation was not performed. Try again later. */
+#define EAGAIN		(-11002)
 
 /** No data.
