diff options
author | Darren Tucker <dtucker@zip.com.au> | 2008-11-11 16:33:03 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2008-11-11 16:33:03 +1100 |
commit | c6d744e9cdce63c250da4f87279d7da459ff4423 (patch) | |
tree | 771eb6de8f317913ddaa5daed04a074ced88215a | |
parent | b57fab6b0b7b30d279bea89409a684b2793fd924 (diff) |
- dtucker@cvs.openbsd.org 2008/11/07 23:34:48
[auth2-jpake.c]
Move JPAKE define to make life easier for portable. ok djm@
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | auth2-jpake.c | 6 |
2 files changed, 7 insertions, 4 deletions
@@ -10,6 +10,9 @@ | |||
10 | - stevesk@cvs.openbsd.org 2008/11/07 18:50:18 | 10 | - stevesk@cvs.openbsd.org 2008/11/07 18:50:18 |
11 | [nchan.c] | 11 | [nchan.c] |
12 | add space to some log/debug messages for readability; ok djm@ markus@ | 12 | add space to some log/debug messages for readability; ok djm@ markus@ |
13 | - dtucker@cvs.openbsd.org 2008/11/07 23:34:48 | ||
14 | [auth2-jpake.c] | ||
15 | Move JPAKE define to make life easier for portable. ok djm@ | ||
13 | 16 | ||
14 | 20081105 | 17 | 20081105 |
15 | - OpenBSD CVS Sync | 18 | - OpenBSD CVS Sync |
@@ -4902,4 +4905,4 @@ | |||
4902 | OpenServer 6 and add osr5bigcrypt support so when someone migrates | 4905 | OpenServer 6 and add osr5bigcrypt support so when someone migrates |
4903 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ | 4906 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ |
4904 | 4907 | ||
4905 | $Id: ChangeLog,v 1.5135 2008/11/11 05:32:25 dtucker Exp $ | 4908 | $Id: ChangeLog,v 1.5136 2008/11/11 05:33:03 dtucker Exp $ |
diff --git a/auth2-jpake.c b/auth2-jpake.c index 0029ec26b..efe7ff2a3 100644 --- a/auth2-jpake.c +++ b/auth2-jpake.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: auth2-jpake.c,v 1.1 2008/11/04 08:22:12 djm Exp $ */ | 1 | /* $OpenBSD: auth2-jpake.c,v 1.2 2008/11/07 23:34:48 dtucker Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2008 Damien Miller. All rights reserved. | 3 | * Copyright (c) 2008 Damien Miller. All rights reserved. |
4 | * | 4 | * |
@@ -25,6 +25,8 @@ | |||
25 | * http://grouper.ieee.org/groups/1363/Research/contributions/hao-ryan-2008.pdf | 25 | * http://grouper.ieee.org/groups/1363/Research/contributions/hao-ryan-2008.pdf |
26 | */ | 26 | */ |
27 | 27 | ||
28 | #ifdef JPAKE | ||
29 | |||
28 | #include <sys/types.h> | 30 | #include <sys/types.h> |
29 | #include <sys/param.h> | 31 | #include <sys/param.h> |
30 | 32 | ||
@@ -55,8 +57,6 @@ | |||
55 | 57 | ||
56 | #include "jpake.h" | 58 | #include "jpake.h" |
57 | 59 | ||
58 | #ifdef JPAKE | ||
59 | |||
60 | /* | 60 | /* |
61 | * XXX options->permit_empty_passwd (at the moment, they will be refused | 61 | * XXX options->permit_empty_passwd (at the moment, they will be refused |
62 | * anyway because they will mismatch on fake salt. | 62 | * anyway because they will mismatch on fake salt. |