mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-02 06:03:50 +00:00
7c084f620e
- fix build failures in i386 and amd64 due to compiler changes - fix numerous compilation warnings and logical errors that may trap in the future - convert all distribution files from DOS format to ease future changes - convert legacy patch file to new naming convention PR: 214990 Submitted by: bob@eager.cx (maintainer)
12 lines
690 B
C
12 lines
690 B
C
--- HP2100/hp2100_ipl.c.orig 2016-12-01 22:43:42 UTC
|
|
+++ HP2100/hp2100_ipl.c
|
|
@@ -623,7 +623,7 @@ uptr->filename = tptr;
|
|
sim_activate (uptr, POLL_FIRST); /* activate first poll "immediately" */
|
|
if (sim_switches & SWMASK ('W')) { /* wait? */
|
|
for (i = 0; i < 30; i++) { /* check for 30 sec */
|
|
- if (t = ipl_check_conn (uptr)) /* established? */
|
|
+ if ((t = ipl_check_conn (uptr))) /* established? */
|
|
break;
|
|
if ((i % 10) == 0) /* status every 10 sec */
|
|
printf ("Waiting for connnection\n");
|