diff options
author | bapt <bapt@FreeBSD.org> | 2013-06-17 10:00:48 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-06-17 10:00:48 +0000 |
commit | 2b5579c9bdbbca29e7b2df1ee9a9e5d1cce2b06f (patch) | |
tree | d48b8f5f4c81e26e8dbb6597554286f1d6d53d3a /argv.c | |
parent | a94245b3d36b447d1f761028da7e072210e64b43 (diff) | |
download | FreeBSD-src-2b5579c9bdbbca29e7b2df1ee9a9e5d1cce2b06f.zip FreeBSD-src-2b5579c9bdbbca29e7b2df1ee9a9e5d1cce2b06f.tar.gz |
Update dialog to 1.2-20130523
Diffstat (limited to 'argv.c')
-rw-r--r-- | argv.c | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -1,9 +1,9 @@ /* - * $Id: argv.c,v 1.1 2011/03/02 09:56:39 tom Exp $ + * $Id: argv.c,v 1.2 2012/11/30 20:28:23 tom Exp $ * * argv - Reusable functions for argv-parsing. * - * Copyright 2011 Thomas E. Dickey + * Copyright 2011,2012 Thomas E. Dickey * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License, version 2.1 @@ -56,12 +56,6 @@ dlg_string_to_argv(char *blob) } } else if (blob[n] == '\\') { if (quoted && !isspace(UCH(blob[n + 1]))) { - if (!inparm) { - if (pass) - result[count] = param; - ++count; - inparm = TRUE; - } if (pass) { *param++ = blob[n]; *param++ = blob[n + 1]; |