In the file npdstracker.java line 1686 the code currently looks like this:
String templine = "[REGUP] " + theInfo.mHost;
In order for this to be properly read into npds tracker server using the -c command line option, the code must be as follows:
String templine = "REGUP " + theInfo.mHost;