]> git.draconx.ca Git - rarpd-dx.git/commitdiff
Clean up whitespace a bit.
authorNick Bowler <nbowler@draconx.ca>
Sun, 30 Jul 2023 20:42:51 +0000 (16:42 -0400)
committerNick Bowler <nbowler@draconx.ca>
Sun, 30 Jul 2023 20:42:51 +0000 (16:42 -0400)
NEWS
configure.ac
src/rarpd.c

diff --git a/NEWS b/NEWS
index 04beabbfc99619d2f321cac7fbad5469f959e3ad..5170dfc4e93e66c53a81734034c9e1a578640359 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,2 +1,5 @@
+Release 1a:
+       * Various bug fixes and improvements.
+
 Release 1:
        * Initial release of rarpd separated from iputils.
index 6eff55163bb21f63e8e77749e136d27afe7fea9b..a2a595184b83f88315a9dcee2424fd40d88f6933 100644 (file)
@@ -5,7 +5,7 @@ dnl This is free software: you are free to do what the fuck you want to.
 dnl There is NO WARRANTY, to the extent permitted by law.
 
 AC_PREREQ([2.68])
-AC_INIT([rarpd], [1], [nbowler@draconx.ca], [rarpd-dx])
+AC_INIT([rarpd], [1a], [nbowler@draconx.ca], [rarpd-dx])
 
 AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign subdir-objects])
 AM_SILENT_RULES([yes])
index 2374fb096ed665e0d3e735bab92197a57f46624d..38e8d379212442fbbaea4a99164f55f6b2ad3bdc 100644 (file)
@@ -1,12 +1,12 @@
 /*
- * rarpd.c     RARP daemon.
+ * rarpd.c RARP daemon.
  *
- *             This program is free software; you can redistribute it and/or
- *             modify it under the terms of the GNU General Public License
- *             as published by the Free Software Foundation; either version
- *             2 of the License, or (at your option) any later version.
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; either version 2 of the License, or (at your option)
+ * any later version.
  *
- * Authors:    Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
+ * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
  *
  * Extricated from iputils by Nick Bowler (2023-07).
  */
@@ -50,31 +50,31 @@ extern int ether_ntohost(char *name, unsigned char *ea);
 
 struct iflink
 {
-       struct iflink   *next;
-       int             index;
-       int             hatype;
-       unsigned char   lladdr[16];
-       char            name[IFNAMSIZ];
-       struct ifaddr   *ifa_list;
+       struct iflink *next;
+       int            index;
+       int            hatype;
+       unsigned char  lladdr[16];
+       char           name[IFNAMSIZ];
+       struct ifaddr *ifa_list;
 } *ifl_list;
 
 struct ifaddr
 {
-       struct ifaddr   *next;
-       uint32_t                prefix;
-       uint32_t                mask;
-       uint32_t                local;
+       struct ifaddr *next;
+       uint32_t       prefix;
+       uint32_t       mask;
+       uint32_t       local;
 };
 
 struct rarp_map
 {
        struct rarp_map *next;
 
-       int             ifindex;
-       int             arp_type;
-       int             lladdr_len;
-       unsigned char   lladdr[16];
-       uint32_t                ipaddr;
+       int              ifindex;
+       int              arp_type;
+       int              lladdr_len;
+       unsigned char    lladdr[16];
+       uint32_t         ipaddr;
 } *rarp_db;
 
 static void print_usage(FILE *f)