Oops fix another regression in cmd

This commit is contained in:
pancake 2015-03-24 04:55:47 +01:00
parent 8ba1a56209
commit 0266dd37da

View File

@ -1339,7 +1339,11 @@ next2:
*ptr = '\0';
for (ptr++; *ptr== ' '; ptr++);
//ptr--;
if (*ptr && ptr[1]==':') {
/* do nothing here */
} else {
ptr--;
}
if (ptr[0] && ptr[1] && ptr[2])
arroba = strchr (ptr+2, '@');