freebsd-ports/security/mcrypt/files/patch-src_extra.c
Trevor Johnson 201fdac8c9 new port of mcrypt 2.5.5, a replacement for crypt(1)
Obtained from:	OpenBSD
2001-03-23 05:16:45 +00:00

11 lines
217 B
C

--- src/extra.c.orig Mon Oct 2 09:38:07 2000
+++ src/extra.c Thu Mar 22 20:14:15 2001
@@ -289,7 +289,7 @@
int i;
for (i = 0; i < size; i++) {
- str[i] = _tolower(str[i]);
+ str[i] = tolower(str[i]);
}
}