]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Merge branch 'tor-github/pr/1294'
authorGeorge Kadianakis <desnacked@riseup.net>
Thu, 5 Sep 2019 14:12:19 +0000 (17:12 +0300)
committerGeorge Kadianakis <desnacked@riseup.net>
Thu, 5 Sep 2019 14:12:19 +0000 (17:12 +0300)
1  2 
src/app/config/confparse.c
src/app/config/confparse.h
src/lib/conf/conftypes.h

Simple merge
Simple merge
index 612272e4536164f0a48b4137f3f58313931df601,3db115204bc7e104197a12e5e8c7c71bf5cbce44..4609564b3497915b7552260f7429f0c117b471df
@@@ -122,9 -100,13 +122,13 @@@ typedef struct struct_member_t 
   * that they have the correct type.
   */
  typedef struct struct_magic_decl_t {
+   /** The name of the structure */
    const char *typename;
+   /** A value used to recognize instances of this structure. */
    uint32_t magic_val;
 -  int magic_offset;
+   /** The location within the structure at which we expect to find
+    * <b>magic_val</b>. */
 +  ptrdiff_t magic_offset;
  } struct_magic_decl_t;
  
  /**