jag111
10-09-2003, 05:02 PM
Anyone else having the problem since the 10/9 patch where MySEQ reports LDoN zone names as
NAME_XXX
where XXX seems to be a random number?
I'm not positive whether it's just that the offsets aren't completely right yet, or whether LDoN zones are now being reported differently. Normal zones don't have anything appended though.
In any case, I made a fix for myself that I haven't tested yet, but should work for the time being if it is actually the norm.
In Form1.cs:
Add an import line to the top like so:
using System.Text.RegularExpressions;
Then go down to roughly line 2110 or do a find for
"string fn = new string(si.Name.ToCharArray(0, strlen(si.Name)));". After that line, add this:
fn = Regex.Replace(fn, "_.*", "");
which will basically strip off anything in the zone name that is _ followed by any number of characters....since I believe there are no zone names that have _ as part of the name.
NAME_XXX
where XXX seems to be a random number?
I'm not positive whether it's just that the offsets aren't completely right yet, or whether LDoN zones are now being reported differently. Normal zones don't have anything appended though.
In any case, I made a fix for myself that I haven't tested yet, but should work for the time being if it is actually the norm.
In Form1.cs:
Add an import line to the top like so:
using System.Text.RegularExpressions;
Then go down to roughly line 2110 or do a find for
"string fn = new string(si.Name.ToCharArray(0, strlen(si.Name)));". After that line, add this:
fn = Regex.Replace(fn, "_.*", "");
which will basically strip off anything in the zone name that is _ followed by any number of characters....since I believe there are no zone names that have _ as part of the name.