=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mail/Attic/aux.c,v retrieving revision 1.29 retrieving revision 1.30 diff -c -r1.29 -r1.30 *** src/usr.bin/mail/Attic/aux.c 2015/10/16 17:56:07 1.29 --- src/usr.bin/mail/Attic/aux.c 2018/09/16 02:38:57 1.30 *************** *** 1,4 **** ! /* $OpenBSD: aux.c,v 1.29 2015/10/16 17:56:07 mmcc Exp $ */ /* $NetBSD: aux.c,v 1.5 1997/05/13 06:15:52 mikel Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: aux.c,v 1.30 2018/09/16 02:38:57 millert Exp $ */ /* $NetBSD: aux.c,v 1.5 1997/05/13 06:15:52 mikel Exp $ */ /* *************** *** 45,51 **** * Return a pointer to a dynamic copy of the argument. */ char * ! savestr(char *str) { char *new; int size = strlen(str) + 1; --- 45,51 ---- * Return a pointer to a dynamic copy of the argument. */ char * ! savestr(const char *str) { char *new; int size = strlen(str) + 1;