Fixes for taglines in lua_glue
This commit is contained in:
parent
0a583eaa84
commit
463b77ba8b
@ -521,7 +521,7 @@ int l_postMessage(lua_State *L) {
|
||||
|
||||
uname(&name);
|
||||
tagline = conf.default_tagline;
|
||||
if (mc != NULL) {
|
||||
if (mc->tagline != NULL) {
|
||||
tagline = mc->tagline;
|
||||
}
|
||||
|
||||
@ -535,9 +535,15 @@ int l_postMessage(lua_State *L) {
|
||||
VERSION_MAJOR, VERSION_MINOR, VERSION_STR, name.sysname, name.machine, tagline,
|
||||
mc->fidoaddr->zone, mc->fidoaddr->net, mc->fidoaddr->node, mc->fidoaddr->point);
|
||||
}
|
||||
} else if (mc->nettype == NETWORK_MAGI) {
|
||||
snprintf(buffer, sizeof buffer, "\r--- MagickaBBS v%d.%d%s (%s/%s)\r * Origin: %s (@%d)\r",
|
||||
VERSION_MAJOR, VERSION_MINOR, VERSION_STR, name.sysname, name.machine, tagline,
|
||||
mc->maginode);
|
||||
} else if (mc->nettype == NETWORK_QWK) {
|
||||
snprintf(buffer, sizeof buffer, "\r---\r * MagickaBBS * %s\r",
|
||||
tagline);
|
||||
} else {
|
||||
snprintf(buffer, sizeof buffer, "\r--- MagickaBBS v%d.%d%s (%s/%s)\r * Origin: %s \r",
|
||||
VERSION_MAJOR, VERSION_MINOR, VERSION_STR, name.sysname, name.machine, tagline);
|
||||
snprintf(buffer, sizeof buffer, "\r");
|
||||
}
|
||||
|
||||
stralloc sa = EMPTY_STRALLOC;
|
||||
|
Reference in New Issue
Block a user