CVSROOT: /cvs Module name: src Changes by: [email protected] 2023/05/15 11:00:24
Modified files:
usr.sbin/user : user.c
Log message:
user: simplify memsave() to strsave()
All callers of memsave() pass strlen(s) as the size argument.
We can eliminate the size argument and just use strdup(3) instead.
OK tb@
