1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-03 11:12:13 +00:00

time(3) returns a time_t and not a long. This fixes build on the Alpha.

This commit is contained in:
Steve Price 2000-08-08 02:37:53 +00:00
parent 4556aca903
commit b99a5973fe
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=31391

View File

@ -1,5 +1,14 @@
--- telnetd/sys_term.c.orig Sat Aug 2 14:37:00 1997
+++ telnetd/sys_term.c Sat Oct 17 22:11:51 1998
--- telnetd/sys_term.c.orig Sat Aug 2 01:37:00 1997
+++ telnetd/sys_term.c Sun Aug 6 16:15:37 2000
@@ -167,7 +167,7 @@
struct termios termbuf, termbuf2; /* pty control structure */
#endif /* USE_TERMIO */
-extern long time();
+extern time_t time();
#ifndef STDIN_FILENO
#define STDIN_FILENO fileno(stdin)
@@ -531,7 +531,7 @@
return(p);
#else
@ -68,3 +77,4 @@
+ termbuf.c_iflag &= ~ISTRIP;
#endif
}