diff options
| author | Lars Rasmusson <[email protected]> | 2012-01-14 12:14:36 +0100 |
|---|---|---|
| committer | Lars Rasmusson <[email protected]> | 2012-01-14 12:14:36 +0100 |
| commit | b985efaac1b9fbdd308284e6f756aa11e7861225 (patch) | |
| tree | 7ee55a0ee9d6d95a6961c0398144a565fdf67337 /src/net.cpp | |
| parent | Remove base58 encoding from validateaddress/addmultisigaddress (diff) | |
| download | discoin-b985efaac1b9fbdd308284e6f756aa11e7861225.tar.xz discoin-b985efaac1b9fbdd308284e6f756aa11e7861225.zip | |
Replace tabs with four spaces to comply with coding standard in doc/coding.txt
Diffstat (limited to 'src/net.cpp')
| -rw-r--r-- | src/net.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net.cpp b/src/net.cpp index 817203b01..232920618 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -963,11 +963,11 @@ void ThreadMapPort2(void* parg) #ifndef UPNPDISCOVER_SUCCESS /* miniupnpc 1.5 */ r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype, - port, port, lanaddr, strDesc.c_str(), "TCP", 0); + port, port, lanaddr, strDesc.c_str(), "TCP", 0); #else /* miniupnpc 1.6 */ r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype, - port, port, lanaddr, strDesc.c_str(), "TCP", 0, "0"); + port, port, lanaddr, strDesc.c_str(), "TCP", 0, "0"); #endif if(r!=UPNPCOMMAND_SUCCESS) |