]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Formatting
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Wed, 20 May 2015 16:17:24 +0000 (12:17 -0400)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Wed, 20 May 2015 21:35:46 +0000 (17:35 -0400)
src/include/map.h

index 1c7db9e082aa74ea067395213073898ef6fae649..584c76b4d100104087071d843904ab86b42bf7f7 100644 (file)
@@ -45,16 +45,12 @@ extern "C" {
  * @see vp_tmpl_t
  */
 typedef struct vp_map {
-       vp_tmpl_t               *lhs;   //!< Typically describes the attribute
-                                       //!< to add or modify.
-       vp_tmpl_t               *rhs;   //!< Typically describes a value or a
-                                       //!< src attribute to copy.
+       vp_tmpl_t               *lhs;   //!< Typically describes the attribute to add, modify or compare.
+       vp_tmpl_t               *rhs;   //!< Typically describes a literal value or a src attribute to copy or compare.
 
-       FR_TOKEN                op;     //!< The operator that controls
-                                       //!< insertion of the dst attribute.
+       FR_TOKEN                op;     //!< The operator that controls insertion of the dst attribute.
 
-       CONF_ITEM               *ci;    //!< Config item that the map was
-                                       //!< created from. Mainly used for
+       CONF_ITEM               *ci;    //!< Config item that the map was created from. Mainly used for
                                        //!< logging validation errors.
 
        struct vp_map           *next;  //!< The next valuepair map.