aboutsummaryrefslogtreecommitdiffstats
path: root/vms/vms_misc.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2016-02-03 08:44:40 +0200
committerArnold D. Robbins <arnold@skeeve.com>2016-02-03 08:44:40 +0200
commitaf2b98170ecf3127d8d5ce3e5e3a17c9f4c56059 (patch)
tree386562fc1101144304c0d64872d1052f7d5d6364 /vms/vms_misc.c
parent63c53fb90725db9565dd53f32bed17f94ea896a6 (diff)
parent6471f08e36c2c3015d829cf0775d746701d1476b (diff)
downloadegawk-af2b98170ecf3127d8d5ce3e5e3a17c9f4c56059.tar.gz
egawk-af2b98170ecf3127d8d5ce3e5e3a17c9f4c56059.tar.bz2
egawk-af2b98170ecf3127d8d5ce3e5e3a17c9f4c56059.zip
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'vms/vms_misc.c')
-rw-r--r--vms/vms_misc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/vms/vms_misc.c b/vms/vms_misc.c
index 82c2f8a8..e561af59 100644
--- a/vms/vms_misc.c
+++ b/vms/vms_misc.c
@@ -120,7 +120,7 @@ vms_open( const char *name, int mode, ... )
struct stat stb;
int stat_result;
const char *mbc, *shr = "shr=get", *ctx = "ctx=stm";
-
+
stat_result = stat((char *)name, &stb);
if ( stat_result < 0) { /* assume DECnet */
mbc = "mbc=8";
@@ -187,7 +187,9 @@ vms_gettimeofday(struct timeval *tv, void *timezone__not_used)
/*
Emulate unix's gettimeofday call; timezone argument is ignored.
*/
- static const Dsc epoch_dsc = { sizeof UNIX_EPOCH - sizeof "", UNIX_EPOCH };
+ static const struct dsc$descriptor_s epoch_dsc =
+ { sizeof UNIX_EPOCH - sizeof "",
+ DSC$K_DTYPE_T, DSC$K_CLASS_S, UNIX_EPOCH };
static long epoch[2] = {0L,0L}; /* needs one time initialization */
const long thunk = VMS_UNITS_PER_SECOND;
long now[2], quad[2];