From df553b586b7c11fc660bb1829c339fb005bbbead Mon Sep 17 00:00:00 2001 From: Michal Schmidt Date: Wed, 7 Oct 2015 14:40:44 +0200 Subject: basic: fix env expansion for strings leading with two dollar signs The way to escape a literal dollar sign is to write "$$". But this does not work right if it's at the beginning of the argument. Fix it. --- src/basic/env-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/basic') diff --git a/src/basic/env-util.c b/src/basic/env-util.c index 4804a67f91..ecb2192c4d 100644 --- a/src/basic/env-util.c +++ b/src/basic/env-util.c @@ -541,7 +541,7 @@ char **replace_env_argv(char **argv, char **env) { STRV_FOREACH(i, argv) { /* If $FOO appears as single word, replace it by the split up variable */ - if ((*i)[0] == '$' && (*i)[1] != '{') { + if ((*i)[0] == '$' && (*i)[1] != '{' && (*i)[1] != '$') { char *e; char **w, **m = NULL; unsigned q; -- cgit v1.2.3-54-g00ecf