diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2001-03-23 05:16:45 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2001-03-23 05:16:45 +0000 |
commit | 201fdac8c92582e1a225370a002827da3cae3aea (patch) | |
tree | 04ee4d61c1be434a139e1396e9e816ad8eef1a26 /security/mcrypt/files/patch-src_extra.c | |
parent | o New port of rp-pppoe: The popular Roaring Penguin's PPPoE software (diff) |
new port of mcrypt 2.5.5, a replacement for crypt(1)
Obtained from: OpenBSD
Diffstat (limited to 'security/mcrypt/files/patch-src_extra.c')
-rw-r--r-- | security/mcrypt/files/patch-src_extra.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/security/mcrypt/files/patch-src_extra.c b/security/mcrypt/files/patch-src_extra.c new file mode 100644 index 000000000000..1d3f5f91de2f --- /dev/null +++ b/security/mcrypt/files/patch-src_extra.c @@ -0,0 +1,11 @@ +--- 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]); + } + } + |