Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/crypto/dist/ipsec-tools From Manisha Malla <mmanisha@novell....



details:   https://anonhg.NetBSD.org/src/rev/96d1c67c59cb
branches:  trunk
changeset: 580699:96d1c67c59cb
user:      manu <manu%NetBSD.org@localhost>
date:      Wed May 04 17:23:10 2005 +0000

description:
>From Manisha Malla <mmanisha%novell.com@localhost>:
fix unsigned int checked for being negative

diffstat:

 crypto/dist/ipsec-tools/ChangeLog               |   5 +++++
 crypto/dist/ipsec-tools/src/racoon/isakmp_cfg.c |  10 +++++-----
 2 files changed, 10 insertions(+), 5 deletions(-)

diffs (57 lines):

diff -r 7c9f66776517 -r 96d1c67c59cb crypto/dist/ipsec-tools/ChangeLog
--- a/crypto/dist/ipsec-tools/ChangeLog Wed May 04 14:38:44 2005 +0000
+++ b/crypto/dist/ipsec-tools/ChangeLog Wed May 04 17:23:10 2005 +0000
@@ -1,3 +1,8 @@
+2005-05-04  Emmanuel Dreyfus  <manu%netbsd.org@localhost>
+
+       From Manisha Malla <mmanisha%novell.com@localhost>
+       * src/racoon/isakmp_cfg.c: fix unsigned int checked for being negative
+
 2005-05-03  Emmanuel Dreyfus  <manu%netbsd.org@localhost>
 
        From Patrick McHardy <kaber%trash.net@localhost>
diff -r 7c9f66776517 -r 96d1c67c59cb crypto/dist/ipsec-tools/src/racoon/isakmp_cfg.c
--- a/crypto/dist/ipsec-tools/src/racoon/isakmp_cfg.c   Wed May 04 14:38:44 2005 +0000
+++ b/crypto/dist/ipsec-tools/src/racoon/isakmp_cfg.c   Wed May 04 17:23:10 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: isakmp_cfg.c,v 1.3 2005/04/27 05:19:50 manu Exp $      */
+/*     $NetBSD: isakmp_cfg.c,v 1.4 2005/05/04 17:23:10 manu Exp $      */
 
 /* Id: isakmp_cfg.c,v 1.26.2.1 2005/03/16 00:13:38 manubsd Exp */
 
@@ -130,7 +130,7 @@
 {
        struct isakmp *packet;
        struct isakmp_gen *ph;
-       size_t tlen;
+       int tlen;
        char *npp;
        int np;
        vchar_t *dmsg;
@@ -303,7 +303,7 @@
        struct isakmp_pl_attr *attrpl;
 {
        struct isakmp_data *attr;
-       size_t tlen;
+       int tlen;
        size_t alen;
        char *npp;
        int type;
@@ -440,7 +440,7 @@
        struct isakmp_pl_attr *attrpl;
 {
        struct isakmp_data *attr;
-       size_t tlen;
+       int tlen;
        size_t alen;
        char *npp;
        vchar_t *payload;
@@ -586,7 +586,7 @@
        struct isakmp_pl_attr *attrpl;
 {
        struct isakmp_data *attr;
-       size_t tlen;
+       int tlen;
        size_t alen;
        char *npp;
        vchar_t *payload;



Home | Main Index | Thread Index | Old Index