Help

Pavel Kalousek mefistofelez at hotmail.com
Tue Aug 11 17:52:03 UTC 2009


I have tried several times to unsubscribne from the list via the link in this e-mail.  It does not seem to work.  Please unsubscribe me.

 

Thank you,

 

M.

 

 
> From: svn-src-stable-7-request at freebsd.org
> Subject: svn-src-stable-7 Digest, Vol 68, Issue 7
> To: svn-src-stable-7 at freebsd.org
> Date: Mon, 10 Aug 2009 12:00:31 +0000
> 
> Send svn-src-stable-7 mailing list submissions to
> svn-src-stable-7 at freebsd.org
> 
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.freebsd.org/mailman/listinfo/svn-src-stable-7
> or, via email, send a message with subject or body 'help' to
> svn-src-stable-7-request at freebsd.org
> 
> You can reach the person managing the list at
> svn-src-stable-7-owner at freebsd.org
> 
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of svn-src-stable-7 digest..."
> 
> 
> Today's Topics:
> 
> 1. svn commit: r196088 - stable/7/usr.sbin/ppp (Brian Somers)
> 
> 
> ----------------------------------------------------------------------
> 
> Message: 1
> Date: Sun, 9 Aug 2009 18:39:24 +0000 (UTC)
> From: Brian Somers <brian at FreeBSD.org>
> Subject: svn commit: r196088 - stable/7/usr.sbin/ppp
> To: src-committers at freebsd.org, svn-src-all at freebsd.org,
> svn-src-stable at freebsd.org, svn-src-stable-7 at freebsd.org
> Message-ID: <200908091839.n79IdONq075058 at svn.freebsd.org>
> Content-Type: text/plain; charset=UTF-8
> 
> Author: brian
> Date: Sun Aug 9 18:39:23 2009
> New Revision: 196088
> URL: http://svn.freebsd.org/changeset/base/196088
> 
> Log:
> MFC: Don't get stuck in an infinite loop comparing (short++ <= maxshort)
> 
> PR: 136893
> Submitted by: Aragon Gouveia - aragon at phat dot za dot net (mostly)
> 
> Modified:
> stable/7/usr.sbin/ppp/ (props changed)
> stable/7/usr.sbin/ppp/nat_cmd.c
> 
> Modified: stable/7/usr.sbin/ppp/nat_cmd.c
> ==============================================================================
> --- stable/7/usr.sbin/ppp/nat_cmd.c Sun Aug 9 11:47:39 2009 (r196087)
> +++ stable/7/usr.sbin/ppp/nat_cmd.c Sun Aug 9 18:39:23 2009 (r196088)
> @@ -173,7 +173,7 @@ nat_RedirectPort(struct cmdargs const *a
> return -1;
> }
> 
> - while (laliasport <= haliasport) {
> + do {
> link = PacketAliasRedirectPort(localaddr, htons(llocalport),
> remoteaddr, htons(lremoteport),
> aliasaddr, htons(laliasport),
> @@ -185,10 +185,9 @@ nat_RedirectPort(struct cmdargs const *a
> return 1;
> }
> llocalport++;
> - laliasport++;
> if (hremoteport)
> lremoteport++;
> - }
> + } while (laliasport++ < haliasport);
> 
> return 0;
> }
> 
> 
> ------------------------------
> 
> _______________________________________________
> svn-src-stable-7 at freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/svn-src-stable-7
> To unsubscribe, send any mail to "svn-src-stable-7-unsubscribe at freebsd.org"
> 
> End of svn-src-stable-7 Digest, Vol 68, Issue 7
> ***********************************************

_________________________________________________________________
Express your personality in color! Preview and select themes for Hotmail®. 
http://www.windowslive-hotmail.com/LearnMore/personalize.aspx?ocid=PID23391::T:WLMTAGL:ON:WL:en-US:WM_HYGN_express:082009


More information about the svn-src-stable-7 mailing list