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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/gssapi/mechs/krb5/krb5mech.c
          +++ new/usr/src/uts/common/gssapi/mechs/krb5/krb5mech.c
↓ open down ↓ 110 lines elided ↑ open up ↑
 111  111   * Module linkage information for the kernel.
 112  112   */
 113  113  extern struct mod_ops mod_miscops;
 114  114  
 115  115  static struct modlmisc modlmisc = {
 116  116          &mod_miscops, "Krb5 GSS mechanism"
 117  117  };
 118  118  
 119  119  static struct modlinkage modlinkage = {
 120  120          MODREV_1,
 121      -        (void *)&modlmisc,
 122      -        NULL
      121 +        { (void *)&modlmisc, NULL }
 123  122  };
 124  123  
 125  124  
 126  125  static int krb5_fini_code = EBUSY;
 127  126  
 128  127  int
 129  128  _init()
 130  129  {
 131  130          int retval;
 132  131          gss_mechanism mech, tmp;
↓ open down ↓ 152 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX