[pisa-src] r2296 - in trunk/libpisa: nat.c util.c

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Thu, 15 Apr 2010 17:42:40 +0200

Author: biurrun
Date: Thu Apr 15 17:42:40 2010
New Revision: 2296

Log:
Fix some more doxygen function parameter names.

Modified:
   trunk/libpisa/nat.c
   trunk/libpisa/util.c

Modified: trunk/libpisa/nat.c
==============================================================================
--- trunk/libpisa/nat.c Thu Apr 15 17:37:37 2010        (r2295)
+++ trunk/libpisa/nat.c Thu Apr 15 17:42:40 2010        (r2296)
@@ -64,7 +64,7 @@
 
 /**
  * Replace 4 bytes in a checksum.
- * @param addr pointer to the current checksum. Will be updated to the new
+ * @param checksum pointer to the current checksum. Will be updated to the new
  *    checksum when the functions returns.
  * @param before 4 bytes that were used to calculate the old checksum and
  *  should be replaced.
@@ -210,7 +210,7 @@
  *
  * @param natlist NAT list containing the heads of the hashes.
  * @param map NAT mapping
- * @param remove_private remote IPv4 address
+ * @param remote_private remote IPv4 address
  * @param entry conmgr entry to the service gateway
  * @param mac MAC address, may be NULL if irrelevant
  */

Modified: trunk/libpisa/util.c
==============================================================================
--- trunk/libpisa/util.c        Thu Apr 15 17:37:37 2010        (r2295)
+++ trunk/libpisa/util.c        Thu Apr 15 17:42:40 2010        (r2296)
@@ -35,8 +35,8 @@
 /**
  * Write the cause of death to stderr and exit with the given
  * value.
- * @param errorText   String describing the error
- * @param exitValue   Value passed on to exit(3)
+ * @param error_text   string describing the error
+ * @param exit_value   value passed on to exit(3)
  */
 void pisa_die(const char *error_text, int exit_value)
 {

Other related posts:

  • » [pisa-src] r2296 - in trunk/libpisa: nat.c util.c - Diego Biurrun