Another text web browser.

tempnam() appears to be innocuous.
This commit is contained in:
espie 2000-03-09 02:12:54 +00:00
parent bd03428a45
commit c8afb4eb17
6 changed files with 38 additions and 0 deletions

22
www/links/Makefile Normal file
View File

@ -0,0 +1,22 @@
# $OpenBSD: Makefile,v 1.1.1.1 2000/03/09 02:12:54 espie Exp $
CATEGORIES= www
NEED_VERSION= 1.223
HOMEPAGE= http://artax.karlin.mff.cuni.cz/%7Emikulas/links/
MAINTAINER= espie@cvs.openbsd.org
LICENSE_TYPE= GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
FAKE= Yes
DISTNAME= links-0.83
MASTER_SITES= http://artax.karlin.mff.cuni.cz/%7Emikulas/links/download/
GNU_CONFIGURE= Yes
.include <bsd.port.mk>

3
www/links/files/md5 Normal file
View File

@ -0,0 +1,3 @@
MD5 (links-0.83.tar.gz) = 5fa47d1508b8466dc8f1957195eec925
RMD160 (links-0.83.tar.gz) = c04c4fe0f9b8357d8d2e89b293c40648f4a89a9b
SHA1 (links-0.83.tar.gz) = d7ec3811a126679396ef498174f13bf505e9ef66

1
www/links/pkg/COMMENT Normal file
View File

@ -0,0 +1 @@
text browser, displays while downloading

5
www/links/pkg/DESCR Normal file
View File

@ -0,0 +1,5 @@
Links main features:
- text browser
- menus
- partial frame-support
- displays as it loads

1
www/links/pkg/PLIST Normal file
View File

@ -0,0 +1 @@
bin/links

6
www/links/pkg/SECURITY Normal file
View File

@ -0,0 +1,6 @@
$OpenBSD: SECURITY,v 1.1.1.1 2000/03/09 02:12:54 espie Exp $
get_temp_name() calls tempnam() in session.c
It is only used in continue_download, which use the temporary name in
create_download_file, with safe == 1 (even though it sets safe to 1 in
a particularly funky way).
so this ends in an open(..., O_CREAT|O_TRUNC|O_EXCL, 0600), which is safe.