Home
last modified time | relevance | path

Searched refs:lencopy (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/gen/
H A Dgetspent_r.c185 size_t lencopy; in str2spwd() local
191 lencopy = (size_t)lenstr; in str2spwd()
194 lencopy = p - instr; in str2spwd()
197 if (lencopy + 1 > buflen) { in str2spwd()
203 (void) memmove(buffer, instr, lencopy); in str2spwd()
204 buffer[lencopy] = 0; in str2spwd()
/illumos-gate/usr/src/lib/passwdutil/
H A Dswitch_utils.c527 int lencopy, black_magic; local
533 lencopy = lenstr;
536 lencopy = p - instr;
539 if (lencopy + 1 > buflen) {
542 (void) memcpy(buffer, instr, lencopy);
543 buffer[lencopy] = 0;