From: Wayne Davison Date: Mon, 31 Jan 2005 23:51:54 +0000 (+0000) Subject: Changed the "s" modifier to "w" for a word-splitting merge file. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/0b2901b72da780044787b6ed510ab5c85b2d12af Changed the "s" modifier to "w" for a word-splitting merge file. --- diff --git a/exclude.c b/exclude.c index e458b862..9b96f533 100644 --- a/exclude.c +++ b/exclude.c @@ -683,7 +683,7 @@ static const char *get_filter_tok(const char *p, int xflags, case 'n': mflags |= MATCHFLG_NO_INHERIT; break; - case 's': + case 'w': mflags |= MATCHFLG_WORD_SPLIT; break; }