2013-08-19 16:22:46 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
2013-10-07 15:41:55 +00:00
|
|
|
#include <stdlib.h>
|
2013-08-19 16:22:46 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
eprintf("usage: %s [name]\n", argv0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
|
|
|
|
ARGBEGIN {
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
} ARGEND;
|
|
|
|
|
|
|
|
if (argc < 1) {
|
|
|
|
if (gethostname(buf, sizeof(buf)) < 0)
|
|
|
|
eprintf("gethostname:");
|
|
|
|
puts(buf);
|
|
|
|
} else {
|
|
|
|
if (sethostname(argv[0], strlen(argv[0])) < 0)
|
|
|
|
eprintf("sethostname:");
|
|
|
|
}
|
|
|
|
|
2013-10-07 15:41:55 +00:00
|
|
|
return EXIT_SUCCESS;
|
2013-08-19 16:22:46 +00:00
|
|
|
}
|