Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Aug 2010 03:01:03 GMT
From:      Sergio Ligregni <ligregni@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 182491 for review
Message-ID:  <201008170301.o7H313Um036861@skunkworks.freebsd.org>

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

Change 182491 by ligregni@ligPhenom on 2010/08/17 03:00:55

	Minor fix about trail length

Affected files ...

.. //depot/projects/soc2010/disaudit/shipd.c#12 edit

Differences ...

==== //depot/projects/soc2010/disaudit/shipd.c#12 (text+ko) ====

@@ -379,7 +379,7 @@
 	 * current
 	 */
 
-	if (strlen(path) == 29 && path[14] == '.' && isdigit(path[15])) {
+	if (strlen(path) >= 29 && path[14] == '.' && isdigit(path[15])) {
 		/* XXX To improve this checking later */
 		return 1;
 	}



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