summaryrefslogtreecommitdiffstats
path: root/avahi-utils/avahi-set-host-name.c
diff options
context:
space:
mode:
Diffstat (limited to 'avahi-utils/avahi-set-host-name.c')
-rw-r--r--avahi-utils/avahi-set-host-name.c66
1 files changed, 35 insertions, 31 deletions
diff --git a/avahi-utils/avahi-set-host-name.c b/avahi-utils/avahi-set-host-name.c
index d4566c6..737ca3b 100644
--- a/avahi-utils/avahi-set-host-name.c
+++ b/avahi-utils/avahi-set-host-name.c
@@ -2,17 +2,17 @@
/***
This file is part of avahi.
-
+
avahi is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation; either version 2.1 of the
License, or (at your option) any later version.
-
+
avahi is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
Public License for more details.
-
+
You should have received a copy of the GNU Lesser General Public
License along with avahi; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
@@ -36,12 +36,13 @@
#include <avahi-common/error.h>
#include <avahi-common/malloc.h>
#include <avahi-common/domain.h>
+#include <avahi-common/i18n.h>
#include <avahi-client/client.h>
#include "sigint.h"
typedef enum {
- COMMAND_UNSPEC,
+ COMMAND_UNSPEC,
COMMAND_HELP,
COMMAND_VERSION
} Command;
@@ -57,10 +58,10 @@ static AvahiClient *client = NULL;
static void client_callback(AvahiClient *c, AvahiClientState state, AVAHI_GCC_UNUSED void * userdata) {
switch (state) {
case AVAHI_CLIENT_FAILURE:
- fprintf(stderr, "Client failure, exiting: %s\n", avahi_strerror(avahi_client_errno(c)));
+ fprintf(stderr, _("Client failure, exiting: %s\n"), avahi_strerror(avahi_client_errno(c)));
avahi_simple_poll_quit(simple_poll);
break;
-
+
case AVAHI_CLIENT_S_REGISTERING:
case AVAHI_CLIENT_S_RUNNING:
case AVAHI_CLIENT_S_COLLISION:
@@ -71,10 +72,10 @@ static void client_callback(AvahiClient *c, AvahiClientState state, AVAHI_GCC_UN
static void help(FILE *f, const char *argv0) {
fprintf(f,
- "%s [options] <new host name>\n\n"
- " -h --help Show this help\n"
- " -V --version Show version\n"
- " -v --verbose Enable verbose mode\n",
+ _("%s [options] <new host name>\n\n"
+ " -h --help Show this help\n"
+ " -V --version Show version\n"
+ " -v --verbose Enable verbose mode\n"),
argv0);
}
@@ -112,11 +113,11 @@ static int parse_command_line(Config *c, int argc, char *argv[]) {
if (c->command == COMMAND_UNSPEC) {
if (optind != argc-1) {
- fprintf(stderr, "Invalid number of arguments, expecting exactly one.\n");
+ fprintf(stderr, _("Invalid number of arguments, expecting exactly one.\n"));
return -1;
}
}
-
+
return 0;
}
@@ -125,6 +126,9 @@ int main(int argc, char *argv[]) {
Config config;
const char *argv0;
+ avahi_init_i18n();
+ setlocale(LC_ALL, "");
+
if ((argv0 = strrchr(argv[0], '/')))
argv0++;
else
@@ -138,24 +142,24 @@ int main(int argc, char *argv[]) {
help(stdout, argv0);
ret = 0;
break;
-
+
case COMMAND_VERSION:
printf("%s "PACKAGE_VERSION"\n", argv0);
ret = 0;
break;
- case COMMAND_UNSPEC:
-
+ case COMMAND_UNSPEC:
+
if (!(simple_poll = avahi_simple_poll_new())) {
- fprintf(stderr, "Failed to create simple poll object.\n");
+ fprintf(stderr, _("Failed to create simple poll object.\n"));
goto fail;
}
-
+
if (sigint_install(simple_poll) < 0)
goto fail;
-
+
if (!(client = avahi_client_new(avahi_simple_poll_get(simple_poll), 0, client_callback, NULL, &error))) {
- fprintf(stderr, "Failed to create client object: %s\n", avahi_strerror(error));
+ fprintf(stderr, _("Failed to create client object: %s\n"), avahi_strerror(error));
goto fail;
}
@@ -163,45 +167,45 @@ int main(int argc, char *argv[]) {
const char *version, *hn;
if (!(version = avahi_client_get_version_string(client))) {
- fprintf(stderr, "Failed to query version string: %s\n", avahi_strerror(avahi_client_errno(client)));
+ fprintf(stderr, _("Failed to query version string: %s\n"), avahi_strerror(avahi_client_errno(client)));
goto fail;
}
if (!(hn = avahi_client_get_host_name_fqdn(client))) {
- fprintf(stderr, "Failed to query host name: %s\n", avahi_strerror(avahi_client_errno(client)));
+ fprintf(stderr, _("Failed to query host name: %s\n"), avahi_strerror(avahi_client_errno(client)));
goto fail;
}
-
- fprintf(stderr, "Server version: %s; Host name: %s\n", version, hn);
+
+ fprintf(stderr, _("Server version: %s; Host name: %s\n"), version, hn);
}
if (avahi_client_set_host_name(client, argv[optind]) < 0) {
- fprintf(stderr, "Failed to create host name resolver: %s\n", avahi_strerror(avahi_client_errno(client)));
+ fprintf(stderr, _("Failed to create host name resolver: %s\n"), avahi_strerror(avahi_client_errno(client)));
goto fail;
}
if (config.verbose) {
const char *hn;
-
+
if (!(hn = avahi_client_get_host_name_fqdn(client))) {
- fprintf(stderr, "Failed to query host name: %s\n", avahi_strerror(avahi_client_errno(client)));
+ fprintf(stderr, _("Failed to query host name: %s\n"), avahi_strerror(avahi_client_errno(client)));
goto fail;
}
-
- fprintf(stderr, "Host name successfully changed to %s\n", hn);
+
+ fprintf(stderr, _("Host name successfully changed to %s\n"), hn);
}
-
+
ret = 0;
break;
}
-
+
fail:
if (client)
avahi_client_free(client);
sigint_uninstall();
-
+
if (simple_poll)
avahi_simple_poll_free(simple_poll);