aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2009-01-17 14:43:18 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2009-01-17 14:43:18 +0000
commit4c1cda0ec1c15f734c808a6adfb10157d5043a9e (patch)
tree48c2dc8976956d1b5b84610933bb3020c68da764
parent913c7d86ea10da561d6363b6b17888d348479740 (diff)
parent806fa9b42234f31b1063d47d8318b8d18c6c05e7 (diff)
downloadwydawca-release-1-1.tar.gz
wydawca-release-1-1.tar.bz2
Re-create release-1-1release-1-1
git-svn-id: file:///svnroot/wydawca/tags/release-1-1@336 6bb4bd81-ecc2-4fd4-a2d4-9571d19c0d33
-rw-r--r--ChangeLog2
-rw-r--r--src/config.c4
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 69068e2..7330c5b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2009-01-17 Sergey Poznyakoff <gray@gnu.org.ua>
+ * src/config.c (_cfg_raw_read): Fix missing return value.
+
* src/diskio.c (symlink_file): Silently remove existing symlink
target.
* NEWS: Update.
diff --git a/src/config.c b/src/config.c
index 9f6e401..e123dcc 100644
--- a/src/config.c
+++ b/src/config.c
@@ -1,5 +1,5 @@
/* wydawca - automatic release submission daemon
- Copyright (C) 2007, 2008 Sergey Poznyakoff
+ Copyright (C) 2007, 2008, 2009 Sergey Poznyakoff
Wydawca is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
@@ -934,7 +934,9 @@ _cfg_raw_read (gsc_config_file_t *file, char *val, struct obstack *stk)
{
file->error_msg (file->file_name, start_line, "missing end marker");
file->error_count++;
+ return 1;
}
+ return 0;
}
static void

Return to:

Send suggestions and report system problems to the System administrator.