+1999-09-19 Harlan Stenn <stenn@whimsy.udel.edu>
+
+ * configure.in: 4.0.98a
+
+ * ntpd/ntp_config.c (getconfig): Fix typo.
+ From: "David E. Myers" <dem@skyline.rtp.nc.us>
+ From: David Godfrey <dave@delta.demon.co.uk>
+ From: Geoffrey Sisson <geoff@nominet.org.uk>
+
1999-09-17 Harlan Stenn <stenn@whimsy.udel.edu>
* configure.in: 4.0.98
PACKAGE=ntp
-VERSION=4.0.98
+VERSION=4.0.98a
if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
{ echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
AC_DEFINE_UNQUOTED(STR_SYSTEM, "$target")
AM_CONFIG_HEADER(config.h)
AC_ARG_PROGRAM
-AM_INIT_AUTOMAKE(ntp, 4.0.98)
+AM_INIT_AUTOMAKE(ntp, 4.0.98a)
AC_PREREQ(2.13)
ac_cv_var_oncore_ok=no
exit(2);
}
+ if (
+ (fp = fopen(FindConfig(config_file), "r")) == NULL
#ifdef HAVE_NETINFO
- /* If there is no config_file, try NetInfo. */
- if ((fp = fopen(FindConfig(config_file), "r")) == NULL && check_netinfo && !(config_netinfo = get_netinfo_config()))
-#else
- if ((fp = fopen(FindConfig(config_file), "r")))
-#endif /* !HAVE_NETINFO */
- {
+ /* If there is no config_file, try NetInfo. */
+ && check_netinfo && !(config_netinfo = get_netinfo_config())
+#endif /* HAVE_NETINFO */
+ ) {
fprintf(stderr, "getconfig: Couldn't open <%s>\n", FindConfig(config_file));
msyslog(LOG_INFO, "getconfig: Couldn't open <%s>", FindConfig(config_file));
#ifdef SYS_WINNT