diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2024-02-03 19:54:04 +0100 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2024-02-03 20:03:43 +0100 |
commit | d56fb66d6f49ad6cba968150611c63f771d817c6 (patch) | |
tree | d36fc04e258135ed475aa4b6a8dba315a42fbb00 /winsup | |
parent | 6d6e1e354d214ba70981afe8c92cb9c58d33ac54 (diff) | |
download | newlib-d56fb66d6f49ad6cba968150611c63f771d817c6.zip newlib-d56fb66d6f49ad6cba968150611c63f771d817c6.tar.gz newlib-d56fb66d6f49ad6cba968150611c63f771d817c6.tar.bz2 |
Cygwin: reorder list of CYGWIN env var options alphabetically again
This has been turned upside down for a short while.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/cygwin/environ.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/environ.cc b/winsup/cygwin/environ.cc index d35b956..d4cedcb 100644 --- a/winsup/cygwin/environ.cc +++ b/winsup/cygwin/environ.cc @@ -113,6 +113,7 @@ static struct parse_thing } values[2]; } known[] NO_COPY = { + {"disable_pcon", {&disable_pcon}, setbool, NULL, {{false}, {true}}}, {"error_start", {func: error_start_init}, isfunc, NULL, {{0}, {0}}}, {"export", {&export_settings}, setbool, NULL, {{false}, {true}}}, {"glob", {func: glob_init}, isfunc, NULL, {{0}, {s: "normal"}}}, @@ -120,9 +121,8 @@ static struct parse_thing {"proc_retry", {func: set_proc_retry}, isfunc, NULL, {{0}, {5}}}, {"reset_com", {&reset_com}, setbool, NULL, {{false}, {true}}}, {"wincmdln", {&wincmdln}, setbool, NULL, {{false}, {true}}}, - {"winsymlinks", {func: set_winsymlinks}, isfunc, NULL, {{0}, {0}}}, - {"disable_pcon", {&disable_pcon}, setbool, NULL, {{false}, {true}}}, {"winjitdebug", {&winjitdebug}, setbool, NULL, {{false}, {true}}}, + {"winsymlinks", {func: set_winsymlinks}, isfunc, NULL, {{0}, {0}}}, {NULL, {0}, setdword, 0, {{0}, {0}}} }; |