svn commit: r310732 - stable/11/contrib/bsnmp/snmpd

Ngie Cooper ngie at FreeBSD.org
Thu Dec 29 00:25:39 UTC 2016


Author: ngie
Date: Thu Dec 29 00:25:38 2016
New Revision: 310732
URL: https://svnweb.freebsd.org/changeset/base/310732

Log:
  MFC r310574:
  
  Fix style(9)
  
  - Sort #includes
  - Delete trailing whitespace
  
  No functional change

Modified:
  stable/11/contrib/bsnmp/snmpd/trans_lsock.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/contrib/bsnmp/snmpd/trans_lsock.c
==============================================================================
--- stable/11/contrib/bsnmp/snmpd/trans_lsock.c	Thu Dec 29 00:24:58 2016	(r310731)
+++ stable/11/contrib/bsnmp/snmpd/trans_lsock.c	Thu Dec 29 00:25:38 2016	(r310732)
@@ -32,15 +32,15 @@
  */
 #include <sys/types.h>
 #include <sys/queue.h>
-#include <sys/un.h>
 #include <sys/stat.h>
+#include <sys/un.h>
 
+#include <errno.h>
+#include <stddef.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
-#include <syslog.h>
 #include <string.h>
-#include <errno.h>
+#include <syslog.h>
 #include <unistd.h>
 
 #include "snmpmod.h"
@@ -417,7 +417,7 @@ lsock_send(struct tport *tp, const u_cha
 			return (-1);
 		}
 	}
-	
+
 	return (sendto(peer->input.fd, buf, len, 0, addr, addrlen));
 }
 


More information about the svn-src-all mailing list