From aa4112670b37f2ca1cd64a63337575d45e0d7f36 Mon Sep 17 00:00:00 2001 From: Tollef Fog Heen Date: Mon, 10 May 2010 00:32:20 +0200 Subject: [PATCH] Fix compilation issue; s/-NOENT/-ENOENT/ --- hostname-setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hostname-setup.c b/hostname-setup.c index 9f61474..71a3f75 100644 --- a/hostname-setup.c +++ b/hostname-setup.c @@ -130,7 +130,7 @@ finish: if (k[0] == 0) { free(k); - return -NOENT; + return -ENOENT; } *hn = k; -- 2.39.2