From: Shamus Hammons Date: Sat, 28 Nov 2015 20:01:27 +0000 (-0600) Subject: Fix for stupid bug that truncated -i symbols to 7 chars instead of 8. X-Git-Tag: v1.7.1~18 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rln;a=commitdiff_plain;h=e9b8d47a054a5778d820d57530bd0c7beffbcec9;hp=a0c533714ddb8228fe5f428b7e6641687abb1bbe Fix for stupid bug that truncated -i symbols to 7 chars instead of 8. --- diff --git a/rln.c b/rln.c index 1dd7520..8778d8f 100644 --- a/rln.c +++ b/rln.c @@ -2952,8 +2952,8 @@ int doargs(int argc, char * argv[]) // handle -i (Truncation) else { - if (strlen(isym) > 7) - isym[7] = '\0'; + if (strlen(isym) > 8) + isym[8] = '\0'; } // Place include files in the DATA segment only