diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2015-11-16 19:33:53 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2015-11-16 19:33:53 +0000 |
commit | 3e5ba3a87697f1d75a384fba7d33282b0efbc56d (patch) | |
tree | 596acb56b9a6671617dadbd62f984b37f808e5eb /sys/arch/hppa | |
parent | 36e49efc8023dbd9e7ceb0d59d483be68658ce63 (diff) |
Replace unbounded gets() in libsa with getln() which takes a buffer size,
and convert all gets() users.
ok deraadt@
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r-- | sys/arch/hppa/stand/libsa/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/stand/libsa/Makefile b/sys/arch/hppa/stand/libsa/Makefile index 71eeca4469b..58cc74111a4 100644 --- a/sys/arch/hppa/stand/libsa/Makefile +++ b/sys/arch/hppa/stand/libsa/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.19 2014/07/13 09:26:08 jasper Exp $ +# $OpenBSD: Makefile,v 1.20 2015/11/16 19:33:52 miod Exp $ .include "${.CURDIR}/../Makefile.inc" @@ -20,7 +20,7 @@ SRCS= machdep.c pdc.c itecons.c dev_hppa.c time.c \ ct.c dk.c lf.c lif.c cmd_hppa.c loadfile.c elf32.c elf64.c # stand routines -SRCS+= alloc.c exit.c getfile.c gets.c getchar.c globals.c \ +SRCS+= alloc.c exit.c getfile.c getln.c getchar.c globals.c \ printf.c putchar.c strerror.c strtol.c strchr.c ctime.c snprintf.c # io routines |