diff options
| author | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-10-17 21:25:16 +0000 |
|---|---|---|
| committer | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-10-17 21:25:16 +0000 |
| commit | 706c469cf6b427560ac125155f0a19311389ec4f (patch) | |
| tree | 8172fcb9d2db8a5c31815011a194e0aab04cb3bb /src/encrypt.c | |
| parent | 9bf8366451b60148699657ed966c0913fbae9465 (diff) | |
BUILD : 1.7.17 (1186) BUGS : N/A NOTES : Encryption fixes for win32
git-svn-id: svn://svn.anope.org/anope/trunk@1186 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@906 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/encrypt.c')
| -rw-r--r-- | src/encrypt.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/encrypt.c b/src/encrypt.c index 904a7a97d..9a15f955d 100644 --- a/src/encrypt.c +++ b/src/encrypt.c @@ -18,9 +18,8 @@ Encryption encryption; /******************************************************************************/ -void -encmodule_encrypt(int (*func) - (const char *src, int len, char *dest, int size)) +void encmodule_encrypt(int (*func) + (const char *src, int len, char *dest, int size)) { encryption.encrypt = func; } @@ -40,9 +39,9 @@ void encmodule_decrypt(int (*func) (const char *src, char *dest, int size)) encryption.decrypt = func; } -void -encmodule_check_password(int (*func) - (const char *plaintext, const char *password)) +void encmodule_check_password(int (*func) + (const char *plaintext, + const char *password)) { encryption.check_password = func; } |
