aboutsummaryrefslogtreecommitdiff
path: root/lib/security.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-05-26 01:59:00 +0000
committerYang Tse <yangsita@gmail.com>2008-05-26 01:59:00 +0000
commitd6f8f1606850c8d814dec0dd65818960af88bbca (patch)
tree71646e8d6854f9856cc055cf707f1adb8716ab31 /lib/security.c
parent466429efb06c6b97f7e5c06651b88c9cf79eab54 (diff)
fix: preprocessor complaining about macro redefinition
Diffstat (limited to 'lib/security.c')
-rw-r--r--lib/security.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/security.c b/lib/security.c
index 60585a45e..da1e2fdde 100644
--- a/lib/security.c
+++ b/lib/security.c
@@ -10,7 +10,7 @@
* Copyright (c) 1998, 1999 Kungliga Tekniska Högskolan
* (Royal Institute of Technology, Stockholm, Sweden).
*
- * Copyright (C) 2001 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 2001 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* All rights reserved.
*
@@ -70,8 +70,6 @@
/* The last #include file should be: */
#include "memdebug.h"
-#define min(a, b) ((a) < (b) ? (a) : (b))
-
static const struct {
enum protection_level level;
const char *name;
@@ -179,7 +177,8 @@ sec_get_data(struct connectdata *conn,
static size_t
buffer_read(struct krb4buffer *buf, void *data, size_t len)
{
- len = min(len, buf->size - buf->index);
+ if(buf->size - buf->index < len)
+ len = buf->size - buf->index;
memcpy(data, (char*)buf->data + buf->index, len);
buf->index += len;
return len;