diff options
| author | Wojciech A. Koszek <wkoszek@FreeBSD.org> | 2009-02-07 11:40:47 +0000 |
|---|---|---|
| committer | Wojciech A. Koszek <wkoszek@FreeBSD.org> | 2009-02-07 11:40:47 +0000 |
| commit | 4ac2fcaa4536a5a3a8d2d7ece91f2dd56b41694c (patch) | |
| tree | 7e112f239c4dfce014577e84056e5beae470ae09 /usr.sbin | |
| parent | fcba95d49e79390dff60441216ec33bec12883c5 (diff) | |
Notes
Diffstat (limited to 'usr.sbin')
| -rw-r--r-- | usr.sbin/config/main.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/config/main.c b/usr.sbin/config/main.c index dc43dd7921912..34806ab7df8e8 100644 --- a/usr.sbin/config/main.c +++ b/usr.sbin/config/main.c @@ -466,6 +466,11 @@ configfile_filebased(struct sbuf *sb) struct cfgfile *cf; int i; + /* + * Try to read all configuration files. Since those will be present as + * C string in the macro, we have to slash their ends then the line + * wraps. + */ STAILQ_FOREACH(cf, &cfgfiles, cfg_next) { cff = fopen(cf->cfg_path, "r"); if (cff == NULL) { @@ -500,11 +505,6 @@ configfile(void) sb = sbuf_new(NULL, NULL, 2048, SBUF_AUTOEXTEND); assert(sb != NULL); sbuf_clear(sb); - /* - * Try to read all configuration files. Since those will be present as - * C string in the macro, we have to slash their ends then the line - * wraps. - */ if (filebased) { /* Is needed, can be used for backward compatibility. */ configfile_filebased(sb); |
