diff options
author | Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com> | 2016-06-21 14:19:05 +0300 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-06-22 08:02:50 +0200 |
commit | fcbbde85024f494d7ba573bf8a4474755452efdd (patch) | |
tree | b4c709f2cbce749951a562f45f5281492f44f07e /test/inet/tst-ethers.c | |
parent | 35adc1fa7fbecea572afaf829a33454da0f764b0 (diff) |
test: inet: Fix warning messages
This patch is to address a proposal by Waldemar in this thread:
http://mailman.uclibc-ng.org/pipermail/devel/2016-June/001006.html
tst-ethers-line and tst-ethers require /etc/ethers to exist,
otherwise user should create it manually.
Add this info to warning message.
Signed-off-by: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
Diffstat (limited to 'test/inet/tst-ethers.c')
-rw-r--r-- | test/inet/tst-ethers.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/inet/tst-ethers.c b/test/inet/tst-ethers.c index 6b6e10cd2..f12813aec 100644 --- a/test/inet/tst-ethers.c +++ b/test/inet/tst-ethers.c @@ -6,6 +6,8 @@ /* This test requires /etc/ethers to exist * and to have host "teeth". For example: * 00:11:22:33:44:55 teeth + * You should create /etc/ethers file with + * host "teeth" manually, if it doesn't exist. */ int main(void) @@ -15,8 +17,10 @@ int main(void) int i; int res = ether_hostton("teeth", &addr); - if (res) + if (res) { + printf("Either /etc/ethers is missing or it has incorrect contents\n"); return 1; + } for (i = 0; i < 6; i++) { printf("%02x", addr.ether_addr_octet[i]); |