Author: brooks
Date: Mon Dec 14 21:56:15 2020
New Revision: 368644
URL: https://svnweb.freebsd.org/changeset/base/368644

Log:
  MFC r368543:
  
  style(9): Correct whitespace in struct definitions
  
  struct ifconf and struct ifreq use the odd style "struct<tab>foo".
  struct ifdrv seems to have tried to follow this but was committed with
  spaces in place of most tabs resulting in "struct<space><space>ifdrv".

Modified:
  stable/12/sys/net/if.h
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/net/if.h
==============================================================================
--- stable/12/sys/net/if.h      Mon Dec 14 21:20:55 2020        (r368643)
+++ stable/12/sys/net/if.h      Mon Dec 14 21:56:15 2020        (r368644)
@@ -389,7 +389,7 @@ struct ifreq_buffer {
  * definitions which begin with ifr_name.  The
  * remainder may be interface specific.
  */
-struct ifreq {
+struct ifreq {
        char    ifr_name[IFNAMSIZ];             /* if name, e.g. "en0" */
        union {
                struct  sockaddr ifru_addr;
@@ -463,11 +463,11 @@ struct ifmediareq {
        int     *ifm_ulist;             /* media words */
 };
 
-struct  ifdrv {
-       char            ifd_name[IFNAMSIZ];     /* if name, e.g. "en0" */
-       unsigned long   ifd_cmd;
-       size_t          ifd_len;
-       void            *ifd_data;
+struct ifdrv {
+       char            ifd_name[IFNAMSIZ];     /* if name, e.g. "en0" */
+       unsigned long   ifd_cmd;
+       size_t          ifd_len;
+       void            *ifd_data;
 };
 
 /* 
@@ -489,7 +489,7 @@ struct ifstat {
  * for machine (useful for programs which
  * must know all networks accessible).
  */
-struct ifconf {
+struct ifconf {
        int     ifc_len;                /* size of associated buffer */
        union {
                caddr_t ifcu_buf;
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to