diff options
author | swallace <swallace@FreeBSD.org> | 1996-12-06 08:22:40 +0000 |
---|---|---|
committer | swallace <swallace@FreeBSD.org> | 1996-12-06 08:22:40 +0000 |
commit | 66930f1780789f2e8e03b05ae2bf4cb69352e147 (patch) | |
tree | 58218e5c9aaecc6453648b0f2e91bbaa029eba43 /cad/irsim | |
parent | cc03ce9926d1bf6b9e33ace02c4f74725fcc2a42 (diff) | |
download | FreeBSD-ports-66930f1780789f2e8e03b05ae2bf4cb69352e147.zip FreeBSD-ports-66930f1780789f2e8e03b05ae2bf4cb69352e147.tar.gz |
Upgrade irsim to version 9.4.1.
Need a small patch to fix bug which references an undefined and never
used variable, contline.
Diffstat (limited to 'cad/irsim')
-rw-r--r-- | cad/irsim/files/patch-b | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/cad/irsim/files/patch-b b/cad/irsim/files/patch-b new file mode 100644 index 0000000..3af7d09 --- /dev/null +++ b/cad/irsim/files/patch-b @@ -0,0 +1,22 @@ +*** src/irsim/fio.c.orig Tue Sep 10 19:06:20 1996 +--- src/irsim/fio.c Thu Dec 5 18:43:16 1996 +*************** +*** 46,52 **** + register char *buff = bp; + register int c; + +- contline = 0; + while( --len > 0 ) + { + again : +--- 46,51 ---- +*************** +*** 74,80 **** + } else { + if((c == '\\') && (*bp != '|')){ + c = getc(fp); +- contline++; + if( isatty( (int) fileno( fp ) ) ) { + printf("cont>"); + fflush(stdout); +--- 73,78 ---- |