From 1828cb75bd4052187e7a3640de9c0060b54b210d Mon Sep 17 00:00:00 2001 From: okan Date: Sat, 14 Jun 2008 21:51:00 +0000 Subject: slightly alter the semantics of config files: - if no config file, continue silently and apply defaults - if config file, parse and move on - if config file specified but not found, error out ok oga@ --- parse.y | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'parse.y') diff --git a/parse.y b/parse.y index dd2a45b..e344e11 100644 --- a/parse.y +++ b/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.10 2008/06/14 21:48:54 okan Exp $ */ +/* $OpenBSD: parse.y,v 1.11 2008/06/14 21:51:00 okan Exp $ */ /* * Copyright (c) 2002, 2003, 2004 Henning Brauer @@ -441,7 +441,8 @@ pushfile(const char *name) nfile->name = xstrdup(name); if ((nfile->stream = fopen(nfile->name, "r")) == NULL) { - warn("%s", nfile->name); + if (errno != ENOENT) + warn("%s", nfile->name); free(nfile->name); free(nfile); return (NULL); -- cgit v1.2.3-2-gb3c3