Author: kientzle
Date: Sat Jun 29 15:51:27 2013
New Revision: 252375
URL: http://svnweb.freebsd.org/changeset/base/252375

Log:
  Fix -Wunsequenced warning.
  
  Submitted by: d...@gmx.com

Modified:
  head/lib/libfetch/fetch.c

Modified: head/lib/libfetch/fetch.c
==============================================================================
--- head/lib/libfetch/fetch.c   Sat Jun 29 15:49:26 2013        (r252374)
+++ head/lib/libfetch/fetch.c   Sat Jun 29 15:51:27 2013        (r252375)
@@ -376,7 +376,7 @@ fetchParseURL(const char *URL)
 
                /* password */
                if (*q == ':')
-                       q = fetch_pctdecode(u->pwd, ++q, URL_PWDLEN);
+                       q = fetch_pctdecode(u->pwd, q + 1, URL_PWDLEN);
 
                p++;
        } else {
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to