From d64d9f8780f4f566ff11f3b7bbb2ddeef5505d8c Mon Sep 17 00:00:00 2001 From: Andrej Lajovic Date: Fri, 16 Nov 2012 18:48:36 +0100 Subject: iconv: Fix -c 2012-11-16 Andrej Lajovic [BZ #14672] * iconv/iconv_prog.c (main): Fix -c handling of '/'. --- iconv/iconv_prog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'iconv/iconv_prog.c') diff --git a/iconv/iconv_prog.c b/iconv/iconv_prog.c index 62c6794e4f..a2ce396339 100644 --- a/iconv/iconv_prog.c +++ b/iconv/iconv_prog.c @@ -1,5 +1,5 @@ /* Convert text in given files from the specified from-set to the to-set. - Copyright (C) 1998-2011, 2012 Free Software Foundation, Inc. + Copyright (C) 1998-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. @@ -155,7 +155,7 @@ main (int argc, char *argv[]) if (*errhand == '/') { --nslash; - errhand = strchrnul (errhand, '/'); + errhand = strchrnul (errhand + 1, '/'); if (*errhand == '/') { -- cgit 1.4.1