diff options
author | Tollef Fog Heen <tfheen@err.no> | 2010-05-10 00:32:20 +0200 |
---|---|---|
committer | Tollef Fog Heen <tfheen@err.no> | 2010-05-10 00:32:20 +0200 |
commit | aa4112670b37f2ca1cd64a63337575d45e0d7f36 (patch) | |
tree | 86be3413409120b944998d8278df8646f1570473 | |
parent | 1137a57c2677936bab56c26591a42c93a5e670a8 (diff) |
Fix compilation issue; s/-NOENT/-ENOENT/
-rw-r--r-- | hostname-setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hostname-setup.c b/hostname-setup.c index 9f61474625..71a3f75bd9 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; |