diff options
author | Tobias Brunner <tobias@strongswan.org> | 2011-04-12 14:28:18 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2011-04-12 14:44:49 +0200 |
commit | 24e0595437cdddc1eed1ffd73cd400928349e096 (patch) | |
tree | d4f9d624f353b74478f5e9c77a16cc73f7113de1 /src/pluto/kernel_alg.c | |
parent | f486bf2666fa347733bc9d96ec99c9dfead63312 (diff) | |
download | strongswan-24e0595437cdddc1eed1ffd73cd400928349e096.tar.bz2 strongswan-24e0595437cdddc1eed1ffd73cd400928349e096.tar.xz |
Removed unused variables.
Diffstat (limited to 'src/pluto/kernel_alg.c')
-rw-r--r-- | src/pluto/kernel_alg.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/pluto/kernel_alg.c b/src/pluto/kernel_alg.c index c82c376f8..eab2a8f06 100644 --- a/src/pluto/kernel_alg.c +++ b/src/pluto/kernel_alg.c @@ -404,7 +404,7 @@ static void print_alg(char *buf, int *len, enum_names *alg_names, int alg_type) { char alg_name[BUF_LEN]; int alg_name_len; - + alg_name_len = sprintf(alg_name, " %s", enum_name(alg_names, alg_type)); if (*len + alg_name_len > CRYPTO_MAX_ALG_LINE) { @@ -633,12 +633,11 @@ static bool kernel_alg_db_add(struct db_context *db_ctx, * malloced pointer (this quirk allows easier spdb.c change) */ struct db_context* kernel_alg_db_new(struct alg_info_esp *alg_info, - lset_t policy ) + lset_t policy) { const struct esp_info *esp_info; struct esp_info tmp_esp_info; struct db_context *ctx_new = NULL; - struct db_prop *prop; u_int trans_cnt = esp_ealg_num * esp_aalg_num; if (!(policy & POLICY_ENCRYPT)) /* not possible, I think */ @@ -659,7 +658,6 @@ struct db_context* kernel_alg_db_new(struct alg_info_esp *alg_info, kernel_alg_db_add(ctx_new, &tmp_esp_info, policy); } } - prop = db_prop_get(ctx_new); return ctx_new; } |