diff options
| author | xHire <xhire@tuxportal.cz> | 2008-10-25 22:24:05 +0200 |
|---|---|---|
| committer | xHire <xhire@tuxportal.cz> | 2008-10-25 22:24:05 +0200 |
| commit | b0c9a5b457c45c7832397219371bc484e4634aae (patch) | |
| tree | d752eaecce36c1706c0e8bb1abd48e902e0b37b3 /src/net | |
| parent | 39f3432e4e1e8a2b6c3234df6b90d35e03548b48 (diff) | |
Set the default port in the client to 6800 as well
Diffstat (limited to 'src/net')
| -rw-r--r-- | src/net/tcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/tcp.c b/src/net/tcp.c index 3737b1f..ca11eb3 100644 --- a/src/net/tcp.c +++ b/src/net/tcp.c @@ -48,7 +48,7 @@ sock_tcp_t *bindTcpSocket(char *address, int port, int proto) assert(port > 0 && port < 65535); new = newSockTcp(proto); - ret = -1; // no Warnnings + ret = -1; // no Warnings assert(new != NULL); |