Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Apr 26, 2014
1 parent 5d1e59a commit 9b7ca8b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/include/radiusd.h
Expand Up @@ -188,7 +188,7 @@ struct request {
#ifdef WITH_PROXY
RADIUS_PACKET *proxy_reply; //!< Incoming response.
#endif
VALUE_PAIR *config_items; //!< VALUE_PAIR s used to set per request parameters
VALUE_PAIR *config_items; //!< VALUE_PAIRs used to set per request parameters
//!< for modules and the server core at runtime.
VALUE_PAIR *username; //!< Cached username VALUE_PAIR.
VALUE_PAIR *password; //!< Cached password VALUE_PAIR.
Expand Down Expand Up @@ -242,7 +242,7 @@ struct request {
int in_proxy_hash;

home_server_t *home_server;
home_pool_t *home_pool; /* for dynamic failover */
home_pool_t *home_pool; //!< For dynamic failover

struct timeval proxy_retransmit;

Expand Down
4 changes: 1 addition & 3 deletions src/main/modules.c
Expand Up @@ -854,9 +854,7 @@ static int load_subcomponent_section(modcallable *parent, CONF_SECTION *cs,
*/
dval = dict_valbyname(da->attr, da->vendor, name2);
if (!dval) {
cf_log_err_cs(cs,
"%s %s Not previously configured",
section_type_value[comp].typename, name2);
cf_log_err_cs(cs, "%s %s Not previously configured", section_type_value[comp].typename, name2);
talloc_free(ml);
return 0;
}
Expand Down

0 comments on commit 9b7ca8b

Please sign in to comment.