aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/env.c
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2011-08-01 17:41:01 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2011-08-01 17:41:01 +0200
commit2010d0783d695583e72d0f412278caf4be041776 (patch)
tree550db9ff8d0612f31d17865aa56eb329d677f905 /gcc/ada/env.c
parentf2c308fa3f227cc7b46aa2d1250043aeeaef7ee6 (diff)
downloadgcc-2010d0783d695583e72d0f412278caf4be041776.zip
gcc-2010d0783d695583e72d0f412278caf4be041776.tar.gz
gcc-2010d0783d695583e72d0f412278caf4be041776.tar.bz2
[multiple changes]
2011-08-01 Ed Schonberg <schonberg@adacore.com> * sem_ch6.adb (Fully_Conformant_Expressions): handle quantified expressions. 2011-08-01 Arnaud Charlet <charlet@adacore.com> * sem_ch8.adb: Minor code editing. * s-vxwext.adb: Remove trailing space. * freeze.adb, freeze.ads, errout.ads, erroutc.adb: Fix GPLv3 header for consistency with other files. 2011-08-01 Thomas Quinot <quinot@adacore.com> * s-auxdec.ads, s-auxdec-vms_64.ads: Minor reformatting. 2011-08-01 Ed Schonberg <schonberg@adacore.com> * par-ch10.adb: reject parameterized expressions as compilation unit. * sem_ch4.adb: handle properly conditional expression with overloaded then_clause and no else_clause. 2011-08-01 Tristan Gingold <gingold@adacore.com> * s-parame-vms-alpha.ads, s-parame-vms-ia64.ads: Redeclare C_Address like done by System.Aux_DEC. * env.c (__gnat_setenv) [VMS]: Put logicals into LNM$PROCESS table. From-SVN: r177050
Diffstat (limited to 'gcc/ada/env.c')
-rw-r--r--gcc/ada/env.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/ada/env.c b/gcc/ada/env.c
index e83a051..dc18e4e 100644
--- a/gcc/ada/env.c
+++ b/gcc/ada/env.c
@@ -111,8 +111,7 @@ __gnat_setenv (char *name, char *value)
{
#if defined (VMS)
struct dsc$descriptor_s name_desc;
- /* Put in JOB table for now, so that the project stuff at least works. */
- $DESCRIPTOR (table_desc, "LNM$JOB");
+ $DESCRIPTOR (table_desc, "LNM$PROCESS");
char *host_pathspec = value;
char *copy_pathspec;
int num_dirs_in_pathspec = 1;