This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, openvpn-n2n has been updated via 7d653d51f8ed7aa6198aa724d6e68750642b588f (commit) from d4c8b6bec26d2b45112e129f99921558058c4b18 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 7d653d51f8ed7aa6198aa724d6e68750642b588f Author: Michael Tremer michael.tremer@ipfire.org Date: Fri Jul 1 19:40:44 2011 +0200
openvpnctrl: Fix for while loop that had no break.
-----------------------------------------------------------------------
Summary of changes: src/misc-progs/openvpnctrl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
Difference in files: diff --git a/src/misc-progs/openvpnctrl.c b/src/misc-progs/openvpnctrl.c index ddda612..6191fde 100644 --- a/src/misc-progs/openvpnctrl.c +++ b/src/misc-progs/openvpnctrl.c @@ -361,7 +361,7 @@ void setFirewallRules(void) {
// set firewall rules for n2n connections char *port; - while (conn) { + while (conn != NULL) { sprintf(port, "%d", conn->port); setChainRules(OVPNRED, redif, conn->proto, port); conn = conn->next;
hooks/post-receive -- IPFire 2.x development tree