svn: 2230
@@ -25,6 +25,7 @@ Lines prefixed with '-' were disabled before release and are not finished, or ar
* Fixed CPU lockup for bots which did not have NODENAME/USERNAME/SYSNAME entries filled out.
* Slightly changed/added a comment in -C for uname.
* Fixed binary config stating there was no change with -C under certain conditions.
+* Default binary name is now what you name it, or "wraith" if left in "wraith.OS-ver" format.
1.2.3
@@ -351,7 +351,10 @@ init_conf()
char *p = strrchr(binname, '/');
p++;
- conf.binname = strdup(p);
+ if (strncmp(p, "wraith.", 7))
+ conf.binname = strdup(p);
+ else
+ conf.binname = strdup("wraith");
conf.portmin = 0;
conf.portmax = 0;