1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-05 06:52:22 +03:00

resolve: minor strings improvements

This commit is contained in:
Lennart Poettering 2016-01-21 00:05:37 +01:00
parent 624993ac85
commit 300a716dc4

View File

@ -929,7 +929,7 @@ static void help_dns_classes(void) {
static void help(void) { static void help(void) {
printf("%s [OPTIONS...] NAME...\n" printf("%s [OPTIONS...] NAME...\n"
"%s [OPTIONS...] --service [[NAME] TYPE] DOMAIN\n\n" "%s [OPTIONS...] --service [[NAME] TYPE] DOMAIN\n\n"
"Resolve domain names, IPv4 or IPv6 addresses, resource records, and services.\n\n" "Resolve domain names, IPv4 and IPv6 addresses, DNS resource records, and services.\n\n"
" -h --help Show this help\n" " -h --help Show this help\n"
" --version Show package version\n" " --version Show package version\n"
" -4 Resolve IPv4 addresses\n" " -4 Resolve IPv4 addresses\n"
@ -943,7 +943,7 @@ static void help(void) {
" --service-txt=BOOL Do [not] resolve TXT records for services\n" " --service-txt=BOOL Do [not] resolve TXT records for services\n"
" --cname=BOOL Do [not] follow CNAME redirects\n" " --cname=BOOL Do [not] follow CNAME redirects\n"
" --search=BOOL Do [not] use search domains\n" " --search=BOOL Do [not] use search domains\n"
" --legend=BOOL Do [not] print column headers\n" " --legend=BOOL Do [not] print column headers and meta information\n"
" --statistics Show resolver statistics\n" " --statistics Show resolver statistics\n"
" --reset-statistics Reset resolver statistics\n" " --reset-statistics Reset resolver statistics\n"
, program_invocation_short_name, program_invocation_short_name); , program_invocation_short_name, program_invocation_short_name);
@ -1175,7 +1175,7 @@ int main(int argc, char **argv) {
case MODE_RESOLVE_HOST: case MODE_RESOLVE_HOST:
if (optind >= argc) { if (optind >= argc) {
log_error("No arguments passed"); log_error("No arguments passed.");
r = -EINVAL; r = -EINVAL;
goto finish; goto finish;
} }
@ -1203,7 +1203,7 @@ int main(int argc, char **argv) {
case MODE_RESOLVE_RECORD: case MODE_RESOLVE_RECORD:
if (optind >= argc) { if (optind >= argc) {
log_error("No arguments passed"); log_error("No arguments passed.");
r = -EINVAL; r = -EINVAL;
goto finish; goto finish;
} }
@ -1232,7 +1232,7 @@ int main(int argc, char **argv) {
else if (argc == optind + 3) else if (argc == optind + 3)
r = resolve_service(bus, argv[optind], argv[optind+1], argv[optind+2]); r = resolve_service(bus, argv[optind], argv[optind+1], argv[optind+2]);
else { else {
log_error("Too many arguments"); log_error("Too many arguments.");
r = -EINVAL; r = -EINVAL;
goto finish; goto finish;
} }