From: Arran Cudbard-Bell Date: Wed, 20 May 2015 16:17:24 +0000 (-0400) Subject: Formatting X-Git-Tag: release_3_0_9~330 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0aa92ec7e2c42c41bdb330119813dae05c56be08;p=thirdparty%2Ffreeradius-server.git Formatting --- diff --git a/src/include/map.h b/src/include/map.h index 1c7db9e082a..584c76b4d10 100644 --- a/src/include/map.h +++ b/src/include/map.h @@ -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.