]> Zhao Yanbai Git Server - minix.git/commitdiff
Minor changes in PM interface affected these commands.
authorJorrit Herder <jnherder@minix3.org>
Fri, 17 Jun 2005 08:52:53 +0000 (08:52 +0000)
committerJorrit Herder <jnherder@minix3.org>
Fri, 17 Jun 2005 08:52:53 +0000 (08:52 +0000)
Getty now retrieves the actual release and version number at runtime.

commands/ibm/readclock.c
commands/simple/sysenv.c

index 68741e3b0eff64f67ba5c854870c932492859f6f..27cc860b281683131ad79ece0c3f6e26bc230e92 100755 (executable)
@@ -123,6 +123,7 @@ PUBLIC int main(int argc, char **argv)
        argc--;
   }
 
+#if DEAD_CODE
   /* The hardware clock may run in a different time zone, likely GMT or
    * winter time.  Select that time zone.
    */
@@ -135,6 +136,7 @@ PUBLIC int main(int argc, char **argv)
        putenv(clocktz);
        tzset();
   }
+#endif
 
   /* Read the CMOS real time clock. */
   for (i = 0; i < MAX_RETRIES; i++) {
index b1c693eec35b2aacfe64d4fb0985238bb4192045..cb8b87aa63d511bda1db2c9dc31807fe7a8b4392 100755 (executable)
@@ -55,7 +55,7 @@ int main(int argc, char **argv)
        sysgetenv.val= val;
        sysgetenv.vallen= sizeof(val);
 
-       if (svrctl(SYSGETENV, &sysgetenv) == -1) {
+       if (svrctl(MMGETPARAM, &sysgetenv) == -1) {
            if (errno == ESRCH) {
                ex |= 2;
            } else {