Changeset 6ea9196 in rtems
- Timestamp:
- 03/27/03 13:48:56 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 8bdf1d6
- Parents:
- 34b5bdb6
- Location:
- cpukit/libnetworking
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libnetworking/ChangeLog
r34b5bdb6 r6ea9196 1 2003-03-27 Joel Sherrill <joel@OARcorp.com> 2 3 * kern/kern_sysctl.c: Converted from BSP strlcpy() to strncpy(). 4 1 5 2003-03-25 Joel Sherrill <joel@OARcorp.com> 2 6 -
cpukit/libnetworking/kern/kern_sysctl.c
r34b5bdb6 r6ea9196 857 857 tmparg = malloc(outlen, M_SYSCTLTMP, M_WAITOK); 858 858 859 if (str lcpy(tmparg, (char *)arg1, outlen) >= outlen) {859 if (strncpy(tmparg, (char *)arg1, outlen) >= outlen) { 860 860 free(tmparg, M_SYSCTLTMP); 861 861 goto retry;
Note: See TracChangeset
for help on using the changeset viewer.