summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2009-02-09 16:35:01 +0000
committerKen Raeburn <raeburn@mit.edu>2009-02-09 16:35:01 +0000
commit6d39a4291786e8b79c2d2bae39dc0b2c84cfb67f (patch)
tree0afb9b5664e18e471d24e02b19f2c6671bfce21f /src/util
parent9a264326001468b4429baeda7ffdc8e3e7bd560d (diff)
downloadkrb5-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/util')
-rw-r--r--src/util/support/ipc_stream.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util/support/ipc_stream.c b/src/util/support/ipc_stream.c
index 4037fe87d..28c6614f9 100644
--- a/src/util/support/ipc_stream.c
+++ b/src/util/support/ipc_stream.c
@@ -1,7 +1,7 @@
/*
* $Header$
*
- * Copyright 2006, 2007 Massachusetts Institute of Technology.
+ * Copyright 2006, 2007, 2009 Massachusetts Institute of Technology.
* All Rights Reserved.
*
* Export of this software from the United States of America may
@@ -37,13 +37,13 @@
/* Add debugging later */
#define k5_check_error(x) (x)
-struct k5_ipc_stream {
+struct k5_ipc_stream_s {
char *data;
uint64_t size;
uint64_t max_size;
};
-const struct k5_ipc_stream k5_ipc_stream_initializer = { NULL, 0, 0 };
+const struct k5_ipc_stream_s k5_ipc_stream_initializer = { NULL, 0, 0 };
#define K5_IPC_STREAM_SIZE_INCREMENT 128