libsframe: replace an strncat with strcat
authorIndu Bhagat <indu.bhagat@oracle.com>
Fri, 13 Jan 2023 19:15:43 +0000 (11:15 -0800)
committerIndu Bhagat <indu.bhagat@oracle.com>
Fri, 13 Jan 2023 19:15:43 +0000 (11:15 -0800)
commit68e0003e12184a9bc13e06d35b6bb168f5f27ed3
tree92de563e9a7da054445ac6c8834b2bdf43baa233
parent027d8f7848f30e5b075dc0c9d74107a1747de190
libsframe: replace an strncat with strcat

Calling strncat with the size of the src string is not so meaningful.
The length argument to strncat should specify the remaining bytes
bytes in the destination; although in this case, it appears to be
unncessary altogether to use strncat in the first place.

libsframe/
        * sframe-dump.c (dump_sframe_func_with_fres): Use of strcat is
just as fine.
libsframe/sframe-dump.c