summaryrefslogtreecommitdiff
path: root/lib/curl_sec.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2014-10-08 12:25:07 +0200
committerDaniel Stenberg <daniel@haxx.se>2014-10-08 12:25:07 +0200
commitb90f6e87cf2acd1f4e1516a220ad1e23f826f788 (patch)
tree5d198523d32c9c9b4d5d8c318676b113423b84b4 /lib/curl_sec.h
parent987a4a7367ac8df32628ba738342e2206582f1e7 (diff)
downloadcurl-b90f6e87cf2acd1f4e1516a220ad1e23f826f788.tar.gz
krb5_encode: remove unused argument
Coverity CID 1241957. Removed the unused argument. As this struct and pointer now are used only for krb5, there's no need to keep unused function arguments around.
Diffstat (limited to 'lib/curl_sec.h')
-rw-r--r--lib/curl_sec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/curl_sec.h b/lib/curl_sec.h
index 82151e9c7..6c48da243 100644
--- a/lib/curl_sec.h
+++ b/lib/curl_sec.h
@@ -7,7 +7,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -30,7 +30,7 @@ struct Curl_sec_client_mech {
void (*end)(void *);
int (*check_prot)(void *, int);
int (*overhead)(void *, int, int);
- int (*encode)(void *, const void*, int, int, void**, struct connectdata *);
+ int (*encode)(void *, const void*, int, int, void**);
int (*decode)(void *, void*, int, int, struct connectdata *);
};