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