diff options
author | Ken Raeburn <raeburn@mit.edu> | 2009-02-09 16:35:01 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@mit.edu> | 2009-02-09 16:35:01 +0000 |
commit | 6d39a4291786e8b79c2d2bae39dc0b2c84cfb67f (patch) | |
tree | 0afb9b5664e18e471d24e02b19f2c6671bfce21f /src/include/k5-ipc_stream.h | |
parent | 9a264326001468b4429baeda7ffdc8e3e7bd560d (diff) | |
download | krb5-6d39a4291786e8b79c2d2bae39dc0b2c84cfb67f.tar.gz krb5-6d39a4291786e8b79c2d2bae39dc0b2c84cfb67f.tar.xz krb5-6d39a4291786e8b79c2d2bae39dc0b2c84cfb67f.zip |
More C++ compatibility: Don't use "typedef struct tag *tag"; rename
the tag and keep the same typedefname.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@21918 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/k5-ipc_stream.h')
-rw-r--r-- | src/include/k5-ipc_stream.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/k5-ipc_stream.h b/src/include/k5-ipc_stream.h index edbf5a4ad2..71bbaa1e77 100644 --- a/src/include/k5-ipc_stream.h +++ b/src/include/k5-ipc_stream.h @@ -29,8 +29,8 @@ #include "k5-platform.h" -struct k5_ipc_stream; -typedef struct k5_ipc_stream *k5_ipc_stream; +struct k5_ipc_stream_s; +typedef struct k5_ipc_stream_s *k5_ipc_stream; int32_t k5_ipc_stream_new (k5_ipc_stream *out_stream); |