PERFORCE change 182491 for review

Sergio Ligregni ligregni at FreeBSD.org
Tue Aug 17 03:01:04 UTC 2010


http://p4web.freebsd.org/@@182491?ac=10

Change 182491 by ligregni at 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;
 	}


More information about the p4-projects mailing list