From: Yang Tse Date: Wed, 5 Mar 2008 18:27:31 +0000 (+0000) Subject: fix log message used when unable to connect to destination port X-Git-Tag: upstream/7.37.1~8003 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6c2c281a7eab0332569e77b0dd705145b2817c64;p=platform%2Fupstream%2Fcurl.git fix log message used when unable to connect to destination port --- diff --git a/tests/server/sockfilt.c b/tests/server/sockfilt.c index 921ce6c..f390fc6 100644 --- a/tests/server/sockfilt.c +++ b/tests/server/sockfilt.c @@ -907,7 +907,7 @@ int main(int argc, char *argv[]) if(rc) { error = SOCKERRNO; logmsg("Error connecting to port %d: (%d) %s", - port, error, strerror(error)); + connectport, error, strerror(error)); goto sockfilt_cleanup; } logmsg("====> Client connect");