myconfig, configure option testing and fixing, monitor_fs()

This commit is contained in:
joonicks
2018-04-15 03:57:44 +02:00
parent db4842c42e
commit 5f0fdada3e
26 changed files with 462 additions and 264 deletions

View File

@@ -230,7 +230,7 @@ void table_buffer(const char *format, ...)
int sz;
va_start(msg,format);
sz = sizeof(Strp) + vsprintf(gsockdata,format,msg);
sz = sizeof(Strp) + vsprintf(globaldata,format,msg);
va_end(msg);
for(sp=&e_table;*sp;sp=&(*sp)->next)
@@ -239,7 +239,7 @@ void table_buffer(const char *format, ...)
set_mallocdoer(table_buffer);
*sp = (Strp*)Calloc(sz);
/* Calloc sets to zero (*sp)->next = NULL; */
stringcpy((*sp)->p,gsockdata);
stringcpy((*sp)->p,globaldata);
}
void table_send(const char *from, const int space)