Fixed wrong server address for nntp
This commit is contained in:
parent
3078b10ea6
commit
ad0d7cc679
2
configure
vendored
2
configure
vendored
@ -2274,7 +2274,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbutils mbnntp mbtask mbsetup unix lang
|
||||
PACKAGE="mbsebbs"
|
||||
MAJOR="0"
|
||||
MINOR="95"
|
||||
REVISION="12d1"
|
||||
REVISION="12d2"
|
||||
VERSION="$MAJOR.$MINOR.$REVISION"
|
||||
COPYRIGHT="Copyright (C) 1997-2011 Michiel Broek, All Rights Reserved"
|
||||
SHORTRIGHT="Copyright (C) 1997-2011 M. Broek"
|
||||
|
@ -12,7 +12,7 @@ AC_SUBST(SUBDIRS)
|
||||
PACKAGE="mbsebbs"
|
||||
MAJOR="0"
|
||||
MINOR="95"
|
||||
REVISION="12d1"
|
||||
REVISION="12d2"
|
||||
VERSION="$MAJOR.$MINOR.$REVISION"
|
||||
COPYRIGHT="Copyright (C) 1997-2011 Michiel Broek, All Rights Reserved"
|
||||
SHORTRIGHT="Copyright (C) 1997-2011 M. Broek"
|
||||
|
@ -56,8 +56,8 @@ int nntp_connect(void)
|
||||
hints.ai_family = AF_UNSPEC;
|
||||
hints.ai_socktype = SOCK_STREAM;
|
||||
|
||||
if ((rc = getaddrinfo(CFG.popnode, servport, &hints, &res)) != 0) {
|
||||
WriteError("getaddrinfo %s:%s %s\n", CFG.popnode, servport, gai_strerror(rc));
|
||||
if ((rc = getaddrinfo(CFG.nntpnode, servport, &hints, &res)) != 0) {
|
||||
WriteError("getaddrinfo %s:%s %s\n", CFG.nntpnode, servport, gai_strerror(rc));
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user