2013-08-19 16:22:46 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2014-02-11 10:59:53 +00:00
|
|
|
#include <limits.h>
|
2013-08-19 16:22:46 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2014-02-11 10:59:53 +00:00
|
|
|
#include <unistd.h>
|
2014-11-13 17:29:30 +00:00
|
|
|
|
2013-08-19 16:22:46 +00:00
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
eprintf("usage: %s [name]\n", argv0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2014-11-13 17:21:37 +00:00
|
|
|
char host[HOST_NAME_MAX + 1];
|
2013-08-19 16:22:46 +00:00
|
|
|
|
|
|
|
ARGBEGIN {
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
} ARGEND;
|
|
|
|
|
|
|
|
if (argc < 1) {
|
2014-11-13 17:21:37 +00:00
|
|
|
if (gethostname(host, sizeof(host)) < 0)
|
2013-08-19 16:22:46 +00:00
|
|
|
eprintf("gethostname:");
|
2014-02-11 10:59:53 +00:00
|
|
|
puts(host);
|
2013-08-19 16:22:46 +00:00
|
|
|
} else {
|
2014-02-14 15:11:06 +00:00
|
|
|
if (sethostname(argv[0], strlen(argv[0])) < 0)
|
2013-08-19 16:22:46 +00:00
|
|
|
eprintf("sethostname:");
|
|
|
|
}
|
2014-10-02 22:46:04 +00:00
|
|
|
return 0;
|
2013-08-19 16:22:46 +00:00
|
|
|
}
|