The logical nodenumber for the bbs is now issued by mbtask

This commit is contained in:
Michiel Broek
2004-09-09 19:02:43 +00:00
parent 2343ed5a8b
commit 61f89c0cfc
8 changed files with 25 additions and 21 deletions

View File

@@ -106,13 +106,14 @@ char *exe_cmd(char *in)
* The A(counting) commands.
*
* AINI:5,pid,tty,user,program,city;
* 100:0;
* 100:1,linenr;
* 200:1,Syntax Error;
*/
if (strncmp(cmd, "AINI", 4) == 0) {
if (reg_newcon(token) != -1)
if ((result = reg_newcon(token)) != -1) {
sprintf(obuf, "100:1,%d;", result);
return obuf;
else {
} else {
stat_inc_serr();
return ebuf;
}