forked from pool/nfs-utils
Avoid an unhelpful warning (bsc#1150807) OBS-URL: https://build.opensuse.org/package/show/Base:System/nfs-utils?expand=0&rev=205
21 lines
576 B
Diff
21 lines
576 B
Diff
---
|
|
support/nfs/conffile.c | 7 ++++---
|
|
1 file changed, 4 insertions(+), 3 deletions(-)
|
|
|
|
--- a/support/nfs/conffile.c
|
|
+++ b/support/nfs/conffile.c
|
|
@@ -418,9 +418,10 @@ conf_parse_line(int trans, char *line, c
|
|
|
|
subconf = conf_readfile(relpath);
|
|
if (subconf == NULL) {
|
|
- xlog_warn("config error at %s:%d: "
|
|
- "error loading included config",
|
|
- filename, lineno);
|
|
+ // This warning is not helpful
|
|
+ //xlog_warn("config error at %s:%d: "
|
|
+ // "error loading included config",
|
|
+ // filename, lineno);
|
|
if (relpath)
|
|
free(relpath);
|
|
return;
|