aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2018-10-20 20:23:23 -0700
committerGitHub <noreply@github.com>2018-10-20 20:23:23 -0700
commiteb1b106b537990e8ef5df5af79f8d43ab2b98f28 (patch)
treeaa814d228f693e98d3b6e628f70bd1f38e1ac3d9 /src
parentMerge pull request #678 from jonls/contributing-docs (diff)
parentFixes #578: Allow hash as comment character (diff)
downloadredshift-ng-eb1b106b537990e8ef5df5af79f8d43ab2b98f28.tar.gz
redshift-ng-eb1b106b537990e8ef5df5af79f8d43ab2b98f28.tar.bz2
redshift-ng-eb1b106b537990e8ef5df5af79f8d43ab2b98f28.tar.xz
Merge pull request #679 from jonls/ini-hash-comment
Fixes #578: Allow hash as comment character
Diffstat (limited to 'src')
-rw-r--r--src/config-ini.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config-ini.c b/src/config-ini.c
index c596f92..63c1f5e 100644
--- a/src/config-ini.c
+++ b/src/config-ini.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU General Public License
along with Redshift. If not, see <http://www.gnu.org/licenses/>.
- Copyright (c) 2010 Jon Lund Steffensen <jonlst@gmail.com>
+ Copyright (c) 2010-2018 Jon Lund Steffensen <jonlst@gmail.com>
*/
#ifdef HAVE_CONFIG_H
@@ -184,7 +184,7 @@ config_ini_init(config_ini_state_t *state, const char *filepath)
s[strcspn(s, "\r\n")] = '\0';
/* Skip comments and empty lines. */
- if (s[0] == ';' || s[0] == '\0') continue;
+ if (s[0] == ';' || s[0] == '#' || s[0] == '\0') continue;
if (s[0] == '[') {
/* Read name of section. */