[systemd-commits] src/delta

Tom Gundersen tomegun at kemper.freedesktop.org
Sun Nov 30 03:25:07 PST 2014


 src/delta/delta.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d0a2e1c364320b862a6aae099afa106ea59bb84c
Author: Alison Chaiken <alison_chaiken at mentor.com>
Date:   Sun Nov 30 12:14:48 2014 +0100

    delta: Fix broken separator support
    
    systemd-delta man page promises that multiple types of deltas will be
    concatenated if they are listed with a comma as separator.  Replace
    FOREACH_WORD() with FOREACH_WORD_SEPARATOR() to restore the functionality.

diff --git a/src/delta/delta.c b/src/delta/delta.c
index 9930571..a3a121f 100644
--- a/src/delta/delta.c
+++ b/src/delta/delta.c
@@ -484,7 +484,7 @@ static int parse_flags(const char *flag_str, int flags) {
         const char *word, *state;
         size_t l;
 
-        FOREACH_WORD(word, l, flag_str, state) {
+        FOREACH_WORD_SEPARATOR(word, l, flag_str, ",", state) {
                 if (strneq("masked", word, l))
                         flags |= SHOW_MASKED;
                 else if (strneq ("equivalent", word, l))



More information about the systemd-commits mailing list