Fix some cut and paste damage.
Noticed by: Norman C. Rice <nrice@emu.sourcee.com>
This commit is contained in:
parent
592af9e5e3
commit
650bfbaefb
@ -43,7 +43,7 @@ static const char copyright[] =
|
||||
static char sccsid[] = "@(#)lpc.c 8.3 (Berkeley) 4/28/95";
|
||||
#endif
|
||||
static const char rcsid[] =
|
||||
"$Id: lpc.c,v 1.10 1999/08/19 04:10:32 mdodd Exp $";
|
||||
"$Id: lpc.c,v 1.11 1999/08/20 01:24:35 mdodd Exp $";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/param.h>
|
||||
@ -171,7 +171,7 @@ cmdscanner()
|
||||
if ((bp = el_gets(el, &num)) == NULL || num == 0)
|
||||
return;
|
||||
|
||||
len = (num > MAX_CMDLINE) ? MAX_CMDLINE : num);
|
||||
len = (num > MAX_CMDLINE) ? MAX_CMDLINE : num;
|
||||
memcpy(cmdline, bp, len);
|
||||
cmdline[len] = 0;
|
||||
history(hist, H_ENTER, bp);
|
||||
|
@ -826,7 +826,7 @@ getcmds()
|
||||
if ((bp = el_gets(el, &num)) == NULL || num == 0)
|
||||
return;
|
||||
|
||||
len = (num > MAX_CMDLINE) ? MAX_CMDLINE : num);
|
||||
len = (num > MAX_CMDLINE) ? MAX_CMDLINE : num;
|
||||
memcpy(line, bp, len);
|
||||
line[len] = 0;
|
||||
history(hist, H_ENTER, bp);
|
||||
|
Loading…
Reference in New Issue
Block a user