jdk/src/windows/native/java/io/canonicalize_md.c
changeset 21278 ef8a3a2a72f2
parent 19418 bb4ae810197e
--- a/jdk/src/windows/native/java/io/canonicalize_md.c	Tue Oct 29 16:35:20 2013 +0400
+++ b/jdk/src/windows/native/java/io/canonicalize_md.c	Tue Oct 29 17:01:06 2013 +0400
@@ -161,7 +161,7 @@
 {
     char *p = start;
     while (*p) {
-        if ((p = strchr(p, '.')) == NULL) // find next occurence of '.'
+        if ((p = strchr(p, '.')) == NULL) // find next occurrence of '.'
             return 0; // no more dots
         p++; // next char
         while ((*p) == '.') // go to the end of dots
@@ -184,7 +184,7 @@
         p = p + 4;
 
     while (*p) {
-        if ((p = wcschr(p, L'.')) == NULL) // find next occurence of '.'
+        if ((p = wcschr(p, L'.')) == NULL) // find next occurrence of '.'
             return 0; // no more dots
         p++; // next char
         while ((*p) == L'.') // go to the end of dots