From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:37324) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UhgnF-0001bV-IU for qemu-devel@nongnu.org; Wed, 29 May 2013 09:51:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UhgnE-000794-6m for qemu-devel@nongnu.org; Wed, 29 May 2013 09:51:57 -0400 Received: from smtprelay01.ispgateway.de ([80.67.31.24]:33230) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UhgnD-00078v-TX for qemu-devel@nongnu.org; Wed, 29 May 2013 09:51:56 -0400 Received: from [217.84.5.141] (helo=stokes.schwinge.homeip.net) by smtprelay01.ispgateway.de with esmtpa (Exim 4.68) (envelope-from ) id 1UhgmZ-0003fF-FJ for qemu-devel@nongnu.org; Wed, 29 May 2013 15:51:15 +0200 From: Thomas Schwinge Date: Wed, 29 May 2013 15:50:32 +0200 Message-Id: <1369835434-27727-3-git-send-email-thomas@codesourcery.com> In-Reply-To: <1369835434-27727-1-git-send-email-thomas@codesourcery.com> References: <1369835434-27727-1-git-send-email-thomas@codesourcery.com> Subject: [Qemu-devel] [PATCH 2/4] linux-user: Use existing envlist_parse_set/envlist_parse_unset interface. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, aliguori@us.ibm.com, sw@weilnetz.de, riku.voipio@iki.fi, agraf@suse.de, paul@codesourcery.com, j.schauer@email.de, Thomas Schwinge Signed-off-by: Thomas Schwinge --- linux-user/main.c | 18 ++++-------------- util/envlist.c | 4 ++-- 2 files changed, 6 insertions(+), 16 deletions(-) diff --git linux-user/main.c linux-user/main.c index b97b8cf..a0ea161 100644 --- linux-user/main.c +++ linux-user/main.c @@ -3204,26 +3204,16 @@ static void handle_arg_log_filename(const char *arg) static void handle_arg_set_env(const char *arg) { - char *r, *p, *token; - r = p = strdup(arg); - while ((token = strsep(&p, ",")) != NULL) { - if (envlist_setenv(envlist, token) != 0) { - usage(); - } + if (envlist_parse_set(envlist, arg) != 0) { + usage(); } - free(r); } static void handle_arg_unset_env(const char *arg) { - char *r, *p, *token; - r = p = strdup(arg); - while ((token = strsep(&p, ",")) != NULL) { - if (envlist_unsetenv(envlist, token) != 0) { - usage(); - } + if (envlist_parse_unset(envlist, arg) != 0) { + usage(); } - free(r); } static void handle_arg_argv0(const char *arg) diff --git util/envlist.c util/envlist.c index cbbf7e5..8027bbf 100644 --- util/envlist.c +++ util/envlist.c @@ -55,10 +55,10 @@ envlist_free(envlist_t *envlist) /* * Parses comma separated list of set/modify environment - * variable entries and updates given enlist accordingly. + * variable entries and updates given envlist accordingly. * * For example: - * envlist_parse(el, "HOME=foo,SHELL=/bin/sh"); + * envlist_parse_set(el, "HOME=foo,SHELL=/bin/sh"); * * inserts/sets environment variables HOME and SHELL. * -- 1.7.10.4