Print this page
7127  remove -Wno-missing-braces from Makefile.uts

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/gssapi/mechs/dummy/dmech.c
          +++ new/usr/src/uts/common/gssapi/mechs/dummy/dmech.c
↓ open down ↓ 122 lines elided ↑ open up ↑
 123  123   * Module linkage information for the kernel.
 124  124   */
 125  125  extern struct mod_ops mod_miscops;
 126  126  
 127  127  static struct modlmisc modlmisc = {
 128  128          &mod_miscops, "in-kernel dummy GSS mechanism"
 129  129  };
 130  130  
 131  131  static struct modlinkage modlinkage = {
 132  132          MODREV_1,
 133      -        (void *)&modlmisc,
 134      -        NULL
      133 +        { (void *)&modlmisc, NULL }
 135  134  };
 136  135  
 137  136  static int dummy_fini_code = EBUSY;
 138  137  
 139  138  int
 140  139  _init()
 141  140  {
 142  141          int retval;
 143  142          gss_mechanism mech, tmp;
 144  143  
↓ open down ↓ 450 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX