add krb5_string
authorJohn Kohl <jtkohl@mit.edu>
Fri, 1 Dec 1989 17:13:31 +0000 (17:13 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Fri, 1 Dec 1989 17:13:31 +0000 (17:13 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@39 dc483132-0cff-0310-8789-dd5450dbe970

src/include/krb5/base-defs.h

index d9a2cad12e25d96fae8838f4191abadda2555d42..470dc0f913d68df47ec0abcccd53856533f71f40 100644 (file)
@@ -23,7 +23,7 @@ typedef int16         krb5_ui_2;
 typedef int32          krb5_ui_4;
 
 typedef int32          krb5_timestamp;
-typedef krb5_ui_2      confounder;
+typedef krb5_ui_2      krb5_confounder;
 typedef        octet           krb5_msgtype;
 typedef        octet           krb5_kvno;
 typedef        int32           krb5_flags;
@@ -33,4 +33,9 @@ typedef krb5_ui_2     krb5_keytype;
 typedef krb5_ui_2      krb5_enctype;
 typedef krb5_ui_2      krb5_cksumtype;
 
+typedef struct _krb5_string {
+    int length;
+    char *string;
+} krb5_string;
+
 #endif /* __KRB5_BASE_DEFS__ */