]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
use _s for structures
authorAlan T. DeKok <aland@freeradius.org>
Sat, 17 Sep 2022 13:15:55 +0000 (09:15 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Tue, 20 Sep 2022 19:55:33 +0000 (15:55 -0400)
src/lib/unlang/xlat_ctx.h
src/lib/unlang/xlat_priv.h

index 8aae87a1f10bf91eb76c59fb879896772e51bd58..cd88fa6b4d41e4adc4c7aa9a079355518c70d2c6 100644 (file)
@@ -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
  *
index 717b248accd65faa25c51019b9e93a12d1f34954..274829429a80c4acea12e16c4d5306a20f3bb5ad 100644 (file)
@@ -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