diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2021-01-28 03:05:34 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2021-01-28 03:05:34 +0000 |
commit | 989dca8687efe579a236d6bfbe6df48b49734f20 (patch) | |
tree | 115921891ab7ac9c029f55e466da1c7934df8aa8 /misc/deco/files/patch-env.h | |
parent | emulators/rpcs3: update to 0.0.14.11633 (diff) |
Fix regression introduced in r545519 which resulted in the environment
become empty in the internal shell and thus confusing many programs.
Notes
Notes:
svn path=/head/; revision=563108
Diffstat (limited to 'misc/deco/files/patch-env.h')
-rw-r--r-- | misc/deco/files/patch-env.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/deco/files/patch-env.h b/misc/deco/files/patch-env.h index 0b2186767f60..ae16ed0ba03a 100644 --- a/misc/deco/files/patch-env.h +++ b/misc/deco/files/patch-env.h @@ -2,7 +2,7 @@ +++ env.h @@ -1,4 +1,4 @@ -char **EnvVector; -+static char **EnvVector; ++extern char **EnvVector; void EnvInit (char **env); char *EnvGet (char *name); void EnvPut (char *name, char *value); |