=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/uuencode.c,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- src/usr.bin/ssh/Attic/uuencode.c 2010/08/31 11:54:45 1.26 +++ src/usr.bin/ssh/Attic/uuencode.c 2013/05/17 00:13:14 1.27 @@ -1,4 +1,4 @@ -/* $OpenBSD: uuencode.c,v 1.26 2010/08/31 11:54:45 djm Exp $ */ +/* $OpenBSD: uuencode.c,v 1.27 2013/05/17 00:13:14 djm Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * @@ -27,6 +27,7 @@ #include #include #include +#include #include "xmalloc.h" #include "uuencode.h" @@ -65,7 +66,7 @@ /* and remove trailing whitespace because __b64_pton needs this */ *p = '\0'; len = __b64_pton(encoded, target, targsize); - xfree(encoded); + free(encoded); return len; } @@ -88,5 +89,5 @@ } if (i % 70 != 69) fprintf(fp, "\n"); - xfree(buf); + free(buf); }