diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2002-09-19 20:05:56 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2002-09-19 20:05:56 +0000 |
commit | ef77b2bf81c60940af0a9aa42b5a14f5c61b8d33 (patch) | |
tree | 507f2c4a0314dcf418b5d10dd8f9b2b7c77916eb /security/ruby-password/files/patch-rbcrack.c | |
parent | upgrade to 2.0.34 (diff) |
Add ruby-password, a Ruby library to create, verify and manipulate
passwords.
Notes
Notes:
svn path=/head/; revision=66738
Diffstat (limited to 'security/ruby-password/files/patch-rbcrack.c')
-rw-r--r-- | security/ruby-password/files/patch-rbcrack.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/security/ruby-password/files/patch-rbcrack.c b/security/ruby-password/files/patch-rbcrack.c new file mode 100644 index 000000000000..e47328ea5f62 --- /dev/null +++ b/security/ruby-password/files/patch-rbcrack.c @@ -0,0 +1,15 @@ +--- rbcrack.c.orig Wed Sep 18 16:45:57 2002 ++++ rbcrack.c Fri Sep 20 04:46:38 2002 +@@ -5,7 +5,11 @@ + */ + + #include "ruby.h" +-#include "crack.h" ++#ifdef HAVE_PACKER_H ++#include <packer.h> ++#else ++#include <crack.h> ++#endif + #include "rbcrack.h" + + #define CRACK_VERSION "0.2.0" |