]> git.pld-linux.org Git - packages/heimdal.git/blob - heimdal-cpp-safe.patch
- added DES deprecation warning
[packages/heimdal.git] / heimdal-cpp-safe.patch
1 commit 826c14833f98d1c52830361f4b5a76e3344f388c
2 Author: Love Hornquist Astrand <lha@h5l.org>
3 Date:   Mon Nov 23 07:19:00 2009 -0800
4
5     make cpp safe, from Allan McRae
6
7 diff --git a/lib/krb5/cache.c b/lib/krb5/cache.c
8 index 505ecd0..42e1877 100644
9 --- a/lib/krb5/cache.c
10 +++ b/lib/krb5/cache.c
11 @@ -1376,7 +1376,7 @@ out:
12   *
13   */
14  
15 -struct krb5_cccol_cursor {
16 +struct krb5_cccol_cursor_data {
17      int idx;
18      krb5_cc_cache_cursor cursor;
19  };
20 diff --git a/lib/krb5/krb5.h b/lib/krb5/krb5.h
21 index 9d2ecb3..8fda340 100644
22 --- a/lib/krb5/krb5.h
23 +++ b/lib/krb5/krb5.h
24 @@ -313,7 +313,7 @@ struct krb5_cc_ops;
25                                  NULL)
26  
27  typedef void *krb5_cc_cursor;
28 -typedef struct krb5_cccol_cursor *krb5_cccol_cursor;
29 +typedef struct krb5_cccol_cursor_data *krb5_cccol_cursor;
30  
31  typedef struct krb5_ccache_data {
32      const struct krb5_cc_ops *ops;
This page took 0.027141 seconds and 3 git commands to generate.