*** empty log message ***
authorThomas Bushnell, BSG <thomas@gnu.org>
Thu, 29 Aug 1996 21:09:30 +0000 (21:09 +0000)
committerThomas Bushnell, BSG <thomas@gnu.org>
Thu, 29 Aug 1996 21:09:30 +0000 (21:09 +0000)
* sysdeps/mach/hurd/setitimer.c (setitimer_locked): Correct
  spelling error of _hurd_itimerval.

ChangeLog
stdio/fseek.c
sysdeps/mach/hurd/setitimer.c

index dbee7a6..079b737 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,7 @@
 Thu Aug 29 12:00:30 1996  Thomas Bushnell, n/BSG  <thomas@gnu.ai.mit.edu>
+       
+       * sysdeps/mach/hurd/setitimer.c (setitimer_locked): Correct
+       spelling error of _hurd_itimerval.
 
        * mach/Makefile (MIGFLAGS-mach/mach4): Define variable.
        mach/Machrules (mig.uh, mig.__h): Include $(user-MIGFLAGS) and
index 562b7b3..947e465 100644 (file)
@@ -42,7 +42,7 @@ DEFUN(fseek, (stream, offset, whence),
     return EOF;
 
   /* Make sure we know the current offset info.  */
-  stream.__offset = -1;
+  stream->__offset = -1;
   if (__stdio_check_offset (stream) == EOF)
     return EOF;
 
index 479b327..0b2ace3 100644 (file)
@@ -159,7 +159,7 @@ setitimer_locked (const struct itimerval *new, struct itimerval *old,
       /* Just return the current value in OLD without changing anything.
         This is what BSD does, even though it's not documented. */
       if (old)
-       *old = _hurd_itemerval;
+       *old = _hurd_itimerval;
       spin_unlock (&_hurd_itimer_lock);
       _hurd_critical_section_unlock (crit);
       return 0;