diff --git a/Makefile.in b/Makefile.in index 1b99cee3..2a18e98d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -245,7 +245,7 @@ $(distdir): cp $(srcdir)/spec/example/*.[ch] $(distdir)/spec/example cp $(srcdir)/src/tools/Makefile.in $(distdir)/src/tools cp $(srcdir)/src/tools/*.[ch] $(distdir)/src/tools - cp $(srcdir)/stubby/stubby.yaml.example $(distdir)/stubby + cp $(srcdir)/stubby/stubby.yml.example $(distdir)/stubby cp $(srcdir)/stubby/stubby-setdns-macos.sh $(distdir)/stubby cp $(srcdir)/stubby/src/stubby.c $(distdir)/stubby/src cp $(srcdir)/stubby/COPYING $(distdir)/stubby diff --git a/src/Makefile.in b/src/Makefile.in index 2f9bd411..9f496d40 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -193,14 +193,14 @@ stubby.lo: $(stubbysrcdir)/src/stubby.c stubby: stubby.lo libgetdns.la $(LIBTOOL) --tag=CC --mode=link $(CC) -o $@ stubby.lo $(LDFLAGS) libgetdns.la -install-stubby: stubby $(stubbysrcdir)/stubby.yaml.example $(stubbysrcdir)/stubby-setdns-macos.sh +install-stubby: stubby $(stubbysrcdir)/stubby.yml.example $(stubbysrcdir)/stubby-setdns-macos.sh $(INSTALL) -m 755 -d $(DESTDIR)$(bindir) $(LIBTOOL) --mode=install cp stubby $(DESTDIR)$(bindir) $(INSTALL) -m 755 -d $(DESTDIR)$(sbindir) $(INSTALL) -m 755 $(stubbysrcdir)/stubby-setdns-macos.sh $(DESTDIR)$(sbindir) $(INSTALL) -m 755 -d $(DESTDIR)$(stubbyconfdir) - test -f $(DESTDIR)$(stubbyconfdir)/stubby.yaml || \ - $(INSTALL_DATA) $(stubbysrcdir)/stubby.yaml.example $(DESTDIR)$(stubbyconfdir)/stubby.yaml + test -f $(DESTDIR)$(stubbyconfdir)/stubby.yml || \ + $(INSTALL_DATA) $(stubbysrcdir)/stubby.yml.example $(DESTDIR)$(stubbyconfdir)/stubby.yml uninstall-stubby: $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(bindir)/stubby diff --git a/src/tools/getdns_query.c b/src/tools/getdns_query.c index 6e741e01..aec56f44 100644 --- a/src/tools/getdns_query.c +++ b/src/tools/getdns_query.c @@ -215,7 +215,7 @@ print_usage(FILE *out, const char *progname) fprintf(out, "\t-C\t\n"); fprintf(out, "\t\tRead settings from config file \n"); fprintf(out, "\t\tThe getdns context will be configured with these settings\n"); - fprintf(out, "\t\tThe file must be in YAML format (with extension of '.yaml')\n"); + fprintf(out, "\t\tThe file must be in YAML format (with extension of '.yml')\n"); fprintf(out, "\t\tor JSON dict format (with extension '.conf')\n"); if (i_am_stubby) { fprintf(out, "\t\tBy default, configuration is first read from"); @@ -571,7 +571,7 @@ int parse_config_file(const char *fn, int report_open_failure) } config_file[config_file_sz] = 0; fclose(fh); - parse_config(config_file, strstr(fn, ".yaml") != NULL); + parse_config(config_file, strstr(fn, ".yml") != NULL); free(config_file); return GETDNS_RETURN_GOOD; }