X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/99817f2e4d0ceaf8d3be1410c0c29fcd070ac6ec..6547ca9f73c3f02b2356017bbd7ff85292f8e4a1:/test/getcanon.c diff --git a/test/getcanon.c b/test/getcanon.c index ada6802a..3e6d5870 100644 --- a/test/getcanon.c +++ b/test/getcanon.c @@ -1,5 +1,4 @@ -/* - * getcanon.c - Print the canonical name of a host, default to localhost. +/* getcanon.c - Print the canonical name of a host, default to localhost. * * This code is Copyright (c) 2012, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for @@ -46,10 +45,10 @@ main(int argc, char *argv[]) hints.ai_family = AF_UNSPEC; if (getaddrinfo(hostname, NULL, &hints, &res)) { - printf("%s\n", hostname); + puts(hostname); return 1; } - printf("%s\n", res->ai_canonname); + puts(res->ai_canonname); return 0; }