svn rev #24617: trunk/src/ include/krb5/

tsitkova@MIT.EDU tsitkova at MIT.EDU
Tue Feb 8 16:25:21 EST 2011


http://src.mit.edu/fisheye/changelog/krb5/?cs=24617
Commit By: tsitkova
Log Message:
Set JAVADOC_AUTOBRIEF to YES to allow Doxygen interpret the first line of a JavaDoc-style comment as the brief description. 
Also, minor argument name fix in krb5.hin



Changed Files:
U   trunk/src/Doxyfile
U   trunk/src/include/krb5/krb5.hin
Modified: trunk/src/Doxyfile
===================================================================
--- trunk/src/Doxyfile	2011-02-07 18:40:00 UTC (rev 24616)
+++ trunk/src/Doxyfile	2011-02-08 21:25:21 UTC (rev 24617)
@@ -147,7 +147,7 @@
 # comments will behave just like regular Qt-style comments 
 # (thus requiring an explicit @brief command for a brief description.)
 
-JAVADOC_AUTOBRIEF      = NO
+JAVADOC_AUTOBRIEF      = YES
 
 # If the QT_AUTOBRIEF tag is set to YES then Doxygen will 
 # interpret the first line (until the first dot) of a Qt-style 
@@ -1273,7 +1273,7 @@
 # generate an XML file that captures the structure of 
 # the code including all documentation.
 
-GENERATE_XML           = NO
+GENERATE_XML           = YES
 
 # The XML_OUTPUT tag is used to specify where the XML pages will be put. 
 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 

Modified: trunk/src/include/krb5/krb5.hin
===================================================================
--- trunk/src/include/krb5/krb5.hin	2011-02-07 18:40:00 UTC (rev 24616)
+++ trunk/src/include/krb5/krb5.hin	2011-02-08 21:25:21 UTC (rev 24617)
@@ -292,7 +292,7 @@
 /*
  * Referral-specific functions.
  */
-krb5_boolean KRB5_CALLCONV krb5_is_referral_realm(const krb5_data *);
+krb5_boolean KRB5_CALLCONV krb5_is_referral_realm(const krb5_data *r);
 
 /* Both these functions return constant storage that must not be freed. */
 const krb5_data *KRB5_CALLCONV krb5_anonymous_realm(void);
@@ -2806,8 +2806,8 @@
  * @brief Format a @c KRB_AP_REQ message.
  *
  * @param context           Context structure [input, output]
- * @param auth_context       Authentication context, containing the checksum method to be used; a new authentication contextis returned if NULL is specified. [input, output]
- * @param in_data             Application data with a checksum to be included in the authenticator; specify NULL if no checksum is to be included [input]
+ * @param auth_context      Authentication context, containing the checksum method to be used; a new authentication contextis returned if NULL is specified. [input, output]
+ * @param in_data           Application data with a checksum to be included in the authenticator; specify NULL if no checksum is to be included [input]
  * @param   ap_req_options
  * @param   service
  * @param   hostname
@@ -4186,8 +4186,6 @@
  * @param context           Context structure [input, output]
  * @param addr              Pointer to array of address pointers [output]
  *
- *
- *
  * Compile-time configuration flags indicate which protocol family addresses
  * can be returned.
  *
@@ -4208,7 +4206,6 @@
  * @param context           Context structure [input, output]
  * @param lrealm            Pointer to default realm [output]
  *
- *
  * Make sure to free the allocated memory when it is no longer needed.
  *
  * @retval
@@ -5611,7 +5608,7 @@
  * @brief Convert a string to a delta time value.
  *
  * @param string    Pointer to string to convert [input]
- * @param deltap   Pointer to delta time [output]
+ * @param deltatp   Pointer to delta time [output]
  *
  * @retval
  *  0 Success
@@ -5621,7 +5618,7 @@
  * Kerberos error codes
  */
 krb5_error_code KRB5_CALLCONV
-krb5_string_to_deltat(char *string, krb5_deltat *deltap);
+krb5_string_to_deltat(char *string, krb5_deltat *deltatp);
 
 /**
  * @brief Convert a Kerberos encryption type value to a string.
@@ -6551,7 +6548,7 @@
 #endif
     ;
 void KRB5_CALLCONV
-krb5_copy_error_message(krb5_context, krb5_context);
+krb5_copy_error_message (krb5_context dest_ctx, krb5_context src_ctx);
 
 /**
  * @brief Get extended error information.




More information about the cvs-krb5 mailing list