Browse Source

misc spelling / space / style fixes

pull/145/head
Philip Kaufmann 11 years ago
parent
commit
96b9603c01
  1. 4
      configure.ac
  2. 2
      src/chainparams.h
  3. 2
      src/net.h

4
configure.ac

@ -154,7 +154,7 @@ use_pkgconfig=yes
case $host in
*mingw*)
#pkgconfig does more harm than good with mingw
#pkgconfig does more harm than good with MinGW
use_pkgconfig=no
TARGET_OS=windows
@ -298,7 +298,7 @@ if test x$use_hardening != xno; then
AX_CHECK_COMPILE_FLAG([-fno-stack-protector],[HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -fno-stack-protector"])
AX_CHECK_COMPILE_FLAG([-fstack-protector-all],[HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -fstack-protector-all"])
# -pie will link successfully with mingw, but it's unsupported and leads to undeterministic binaries
# -pie will link successfully with MinGW, but it's unsupported and leads to undeterministic binaries
AX_CHECK_LINK_FLAG([[-pie]], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -pie"])
fi

2
src/chainparams.h

@ -68,7 +68,7 @@ public:
virtual const vector<CAddress>& FixedSeeds() const = 0;
int RPCPort() const { return nRPCPort; }
protected:
CChainParams() {};
CChainParams() {}
uint256 hashGenesisBlock;
MessageStartChars pchMessageStart;

2
src/net.h

@ -313,7 +313,7 @@ public:
unsigned int GetTotalRecvSize()
{
unsigned int total = 0;
BOOST_FOREACH(const CNetMessage &msg, vRecvMsg)
BOOST_FOREACH(const CNetMessage &msg, vRecvMsg)
total += msg.vRecv.size() + 24;
return total;
}

Loading…
Cancel
Save