diff options
author | Jonas Gorski <jogo@openwrt.org> | 2014-07-19 17:05:54 +0200 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2014-07-19 17:20:36 +0200 |
commit | 272014632fe70cb0af2a3441c9692eadd4140244 (patch) | |
tree | b0ca58dc8217bf30227f8b6f3849942edde424f7 /net/znc/patches | |
parent | 6a9cdf5d93df26159b98882cc2c761eb1facefbd (diff) |
znc: update to 1.4
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
Diffstat (limited to 'net/znc/patches')
-rw-r--r-- | net/znc/patches/900-remove_cpp11_usage.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/net/znc/patches/900-remove_cpp11_usage.patch b/net/znc/patches/900-remove_cpp11_usage.patch new file mode 100644 index 000000000..e87730be7 --- /dev/null +++ b/net/znc/patches/900-remove_cpp11_usage.patch @@ -0,0 +1,13 @@ +diff --git a/modules/certauth.cpp b/modules/certauth.cpp +index 61e5687..4857d59 100644 +--- a/modules/certauth.cpp ++++ b/modules/certauth.cpp +@@ -204,7 +204,7 @@ public: + return; + } + +- SCString::const_iterator it2 = it->second.begin(); ++ SCString::iterator it2 = it->second.begin(); + while (id > 1) { + ++it2; + id--; |