Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 31 May 2010 23:42:49 GMT
From:      Garrett Cooper <gcooper@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 179027 for review
Message-ID:  <201005312342.o4VNgnrY060347@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/@@179027?ac=10

Change 179027 by gcooper@gcooper-bayonetta on 2010/05/31 23:42:31

	Fix accidental regression.

Affected files ...

.. //depot/projects/soc2007/gcooper-pkg_install-enhancements-simplified/lib/libpkg/plist.c#12 edit

Differences ...

==== //depot/projects/soc2007/gcooper-pkg_install-enhancements-simplified/lib/libpkg/plist.c#12 (text+ko) ====

@@ -258,7 +258,8 @@
 		if (isspace(*cp)) {
 			*cp = '\0';
 			/* Never sure if macro, increment later */
-			while (isspace(*sp++)) ;
+			while (isspace(*sp))
+				sp++;
 			break;
 		}
 		cp++;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201005312342.o4VNgnrY060347>