diff options
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/params.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/param/params.c b/source3/param/params.c index 944bc3d1b4..3ecdcdc92b 100644 --- a/source3/param/params.c +++ b/source3/param/params.c @@ -182,7 +182,7 @@ static int Continuation( char *line, int pos ) /* we should recognize if `\` is part of a multibyte character or not. */ while(pos2 <= pos) { size_t skip = 0; - skip = skip_multibyte_char(line[pos2]); + skip = get_character_len(line[pos2]); if (skip) { pos2 += skip; } else if (pos == pos2) { |