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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/inet/sockmods/sockmod_sdp.c
          +++ new/usr/src/uts/common/inet/sockmods/sockmod_sdp.c
↓ open down ↓ 54 lines elided ↑ open up ↑
  55   55  
  56   56  /*
  57   57   * Module linkage information for the kernel
  58   58   */
  59   59  static struct modlsockmod modlsockmod = {
  60   60          &mod_sockmodops, "SDP socket module", &sinfo
  61   61  };
  62   62  
  63   63  static struct modlinkage modlinkage = {
  64   64          MODREV_1,
  65      -        &modlsockmod,
  66      -        NULL
       65 +        { &modlsockmod, NULL }
  67   66  };
  68   67  
  69   68  /*
  70   69   * Creates a sdp socket data structure.
  71   70   */
  72   71  /* ARGSUSED */
  73   72  struct sonode *
  74   73  socksdp_create(struct sockparams *sp, int family, int type, int protocol,
  75   74                      int version, int sflags, int *errorp, cred_t *cr)
  76   75  {
↓ open down ↓ 83 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX