From: Alan T. DeKok Date: Sat, 17 Sep 2022 13:15:55 +0000 (-0400) Subject: use _s for structures X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02aa6da5f9e6acbaacaf3d7f0b34d14412cffd6a;p=thirdparty%2Ffreeradius-server.git use _s for structures --- diff --git a/src/lib/unlang/xlat_ctx.h b/src/lib/unlang/xlat_ctx.h index 8aae87a1f10..cd88fa6b4d4 100644 --- a/src/lib/unlang/xlat_ctx.h +++ b/src/lib/unlang/xlat_ctx.h @@ -32,8 +32,8 @@ extern "C" { #endif /* So we don't need to include xlat.h */ -typedef struct xlat_exp xlat_exp_t; -typedef struct xlat_exp_head xlat_exp_head_t; +typedef struct xlat_exp_s xlat_exp_t; +typedef struct xlat_exp_head_s xlat_exp_head_t; /** An xlat calling ctx * diff --git a/src/lib/unlang/xlat_priv.h b/src/lib/unlang/xlat_priv.h index 717b248accd..274829429a8 100644 --- a/src/lib/unlang/xlat_priv.h +++ b/src/lib/unlang/xlat_priv.h @@ -117,7 +117,7 @@ typedef struct { * * These nodes form a tree which represents one or more nested expansions. */ -struct xlat_exp { +struct xlat_exp_s { char const *fmt; //!< The original format string (a talloced buffer). fr_token_t quote; //!< Type of quoting around XLAT_GROUP types. @@ -152,7 +152,7 @@ struct xlat_exp { }; }; -struct xlat_exp_head { +struct xlat_exp_head_s { char const *fmt; //!< The original format string (a talloced buffer). xlat_flags_t flags; //!< Flags that control resolution and evaluation. bool instantiated; //!< temporary flag until we fix more things