mirror of
https://git.freebsd.org/ports.git
synced 2025-06-05 04:46:28 -04:00
- Unbreak on recent 8-current (after sgtty changes).
- Bump PORTREVISION for safety by minor logic change. Submitted by: ed@FreeBSD.org PR: ports/124485
This commit is contained in:
parent
33d1956a50
commit
b64e38a747
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=216186
2 changed files with 19 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
|||
|
||||
PORTNAME= conserver
|
||||
PORTVERSION= 8.1.16
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= comms
|
||||
MASTER_SITES= http://www.conserver.com/ \
|
||||
ftp://ftp.conserver.com/conserver/
|
||||
|
|
18
comms/conserver-com/files/patch-group.c
Normal file
18
comms/conserver-com/files/patch-group.c
Normal file
|
@ -0,0 +1,18 @@
|
|||
--- conserver/group.c.orig 2008-07-03 08:06:56.000000000 +0900
|
||||
+++ conserver/group.c 2008-07-03 08:08:28.000000000 +0900
|
||||
@@ -3839,12 +3839,10 @@
|
||||
"failed]\r\n", -1);
|
||||
continue;
|
||||
}
|
||||
- if (TAB3 == (TABDLY & sbuf.c_oflag)) {
|
||||
- sbuf.c_oflag &= ~TABDLY;
|
||||
- sbuf.c_oflag |= TAB0;
|
||||
+ if (sbuf.c_oflag & OXTABS) {
|
||||
+ sbuf.c_oflag &= ~OXTABS;
|
||||
} else {
|
||||
- sbuf.c_oflag &= ~TABDLY;
|
||||
- sbuf.c_oflag |= TAB3;
|
||||
+ sbuf.c_oflag |= OXTABS;
|
||||
}
|
||||
if (-1 ==
|
||||
tcsetattr(FileFDNum
|
Loading…
Add table
Reference in a new issue