diff options
author | Claudio Fontana <sick_soul@users.sourceforge.net> | 2006-01-29 14:07:19 +0000 |
---|---|---|
committer | Claudio Fontana <sick_soul@users.sourceforge.net> | 2006-01-29 14:07:19 +0000 |
commit | 8f646a2cfa6d68125bc7e18fe70a9a056a167367 (patch) | |
tree | 2efb398003bc19d63b34f62c40f0ffa48cd48cc7 /lib/quotearg.c | |
parent | 7ea1831bf1d15b4e4d0bd8d8034d9b0c24e01617 (diff) | |
download | idutils-8f646a2cfa6d68125bc7e18fe70a9a056a167367.tar.gz idutils-8f646a2cfa6d68125bc7e18fe70a9a056a167367.tar.bz2 idutils-8f646a2cfa6d68125bc7e18fe70a9a056a167367.zip |
* updated with latest gnulib
Diffstat (limited to 'lib/quotearg.c')
-rw-r--r-- | lib/quotearg.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/quotearg.c b/lib/quotearg.c index 1d1b543..113239f 100644 --- a/lib/quotearg.c +++ b/lib/quotearg.c @@ -1,7 +1,7 @@ /* quotearg.c - quote arguments for output - Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004, 2005 Free Software - Foundation, Inc. + Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006 Free + Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -307,6 +307,9 @@ quotearg_buffer_restyled (char *buffer, size_t buffersize, STORE ('\\'); STORE ('?'); break; + + default: + break; } break; @@ -454,6 +457,9 @@ quotearg_buffer_restyled (char *buffer, size_t buffersize, case '[': case '\\': case '^': case '`': case '|': goto use_shell_always_quoting_style; + + default: + break; } } |