fix typo
This commit is contained in:
parent
639260ce32
commit
6bbe51cef1
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: scan.c,v 1.9 1997/10/19 19:53:58 mycroft Exp $ */
|
||||
/* $NetBSD: scan.c,v 1.10 1997/11/15 17:42:07 msaitoh Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992 Carnegie Mellon University
|
||||
|
@ -856,7 +856,7 @@ char *scanfile;
|
|||
if (*p == 'X') {
|
||||
if (notwanted) continue;
|
||||
if (t == NULL)
|
||||
goaway ("scanfile format inconsistant");
|
||||
goaway ("scanfile format inconsistent");
|
||||
(void) Tinsert (&t->Texec,++p,FALSE);
|
||||
continue;
|
||||
}
|
||||
|
@ -870,17 +870,17 @@ char *scanfile;
|
|||
ts.Tflags |= FNOACCT;
|
||||
}
|
||||
if ((q = index (p,' ')) == NULL)
|
||||
goaway ("scanfile format inconsistant");
|
||||
goaway ("scanfile format inconsistent");
|
||||
*q++ = '\0';
|
||||
ts.Tmode = atoo (p);
|
||||
p = q;
|
||||
if ((q = index (p,' ')) == NULL)
|
||||
goaway ("scanfile format inconsistant");
|
||||
goaway ("scanfile format inconsistent");
|
||||
*q++ = '\0';
|
||||
ts.Tctime = atoi (p);
|
||||
p = q;
|
||||
if ((q = index (p,' ')) == NULL)
|
||||
goaway ("scanfile format inconsistant");
|
||||
goaway ("scanfile format inconsistent");
|
||||
*q++ = 0;
|
||||
ts.Tmtime = atoi (p);
|
||||
(void) strunvis(fname, q);
|
||||
|
|
Loading…
Reference in New Issue