svn commit: r317805 - head/usr.sbin/autofs
Edward Tomasz Napierala
trasz at FreeBSD.org
Thu May 4 19:55:34 UTC 2017
Author: trasz
Date: Thu May 4 19:55:32 2017
New Revision: 317805
URL: https://svnweb.freebsd.org/changeset/base/317805
Log:
Revert r317804; apparently I forgot the auto_master syntax.
MFC after: 2 weeks
Modified:
head/usr.sbin/autofs/common.c
Modified: head/usr.sbin/autofs/common.c
==============================================================================
--- head/usr.sbin/autofs/common.c Thu May 4 19:41:19 2017 (r317804)
+++ head/usr.sbin/autofs/common.c Thu May 4 19:55:32 2017 (r317805)
@@ -224,7 +224,6 @@ node_new_map(struct node *parent, char *
n->n_options = options;
else
n->n_options = strdup("");
- assert(map != NULL);
n->n_map = map;
assert(config_file != NULL);
n->n_config_file = config_file;
@@ -1123,10 +1122,6 @@ parse_master_yyin(struct node *root, con
ret = yylex();
if (ret == 0 || ret == NEWLINE) {
if (mountpoint != NULL) {
- if (map == NULL) {
- log_errx(1, "missing map name "
- "at %s, line %d", master, lineno);
- }
//log_debugx("adding map for %s", mountpoint);
node_new_map(root, mountpoint, options, map,
master, lineno);
More information about the svn-src-head
mailing list