Bug: Freedom Client sometimes fails to find socials.
Danger: Low - Only an issue if you use IMC.
Found by: Kayle
Fixed by: Kayle
---
imc.c, imc_find_social
Find:
// lower-case the social name before asking the MUD
static char lcSocName[LGST];
for (int i = 0; i < LGST && sname[i] != '\0'; i++) {
lcSocName[i] = tolower(sname[i]);
}
Replace with:
// lower-case the social name before asking the MUD
static char lcSocName[LGST];
for (int i = 0; i < LGST; i++) {
if( sname[i] != '\0' )
lcSocName[i] = tolower(sname[i]);
else
lcSocName[i] = '\0';
}
What happens is if you use a social with a long name like, 'marshmallow', and then try and use one like 'snicker', it's not nulling the end and so you end up with 'snickerllow'. Which, typically isn't a social.