dst can't be const, you idiot.

git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@492 185d5e19-27fe-0310-9dcf-9bff6b9f3609
This commit is contained in:
Dag-Erling Smørgrav 2011-11-20 02:04:17 +00:00
parent 6a92548403
commit b011e58526
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@
#ifndef HAVE_STRLCPY
/* like strcpy(3), but always NUL-terminates; returns strlen(src) */
size_t
strlcpy(const char *dst, const char *src, size_t size)
strlcpy(char *dst, const char *src, size_t size)
{
size_t len;