Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package arpwatch for openSUSE:Factory 
checked in at 2022-04-27 21:42:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/arpwatch (Old)
 and      /work/SRC/openSUSE:Factory/.arpwatch.new.1538 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "arpwatch"

Wed Apr 27 21:42:15 2022 rev:39 rq:973216 version:3.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/arpwatch/arpwatch.changes        2022-03-22 
19:40:00.499077833 +0100
+++ /work/SRC/openSUSE:Factory/.arpwatch.new.1538/arpwatch.changes      
2022-04-27 21:42:26.321093395 +0200
@@ -1,0 +2,6 @@
+Wed Apr 27 11:06:26 UTC 2022 - Dominique Leuenberger <[email protected]>
+
+- Update to version 3.3:
+  + Fix direction of memmove() in sanity_fddi().
+
+-------------------------------------------------------------------

Old:
----
  arpwatch-3.2.tar.gz

New:
----
  arpwatch-3.3.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ arpwatch.spec ++++++
--- /var/tmp/diff_new_pack.8R4QQk/_old  2022-04-27 21:42:26.837094025 +0200
+++ /var/tmp/diff_new_pack.8R4QQk/_new  2022-04-27 21:42:26.849094039 +0200
@@ -21,7 +21,7 @@
   %define _fillupdir %{_localstatedir}/adm/fillup-templates
 %endif
 Name:           arpwatch
-Version:        3.2
+Version:        3.3
 Release:        0
 Summary:        Tool to keep track of Ethernet<->IP address pairings
 License:        BSD-3-Clause

++++++ arpwatch-3.2.tar.gz -> arpwatch-3.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/arpwatch-3.2/CHANGES new/arpwatch-3.3/CHANGES
--- old/arpwatch-3.2/CHANGES    2021-12-15 23:11:07.000000000 +0100
+++ new/arpwatch-3.3/CHANGES    2022-03-26 21:23:50.000000000 +0100
@@ -1,4 +1,8 @@
-@(#) $Id: CHANGES 1532 2021-12-15 22:11:07Z leres $ (LBL)
+@(#) $Id: CHANGES 1534 2022-03-26 20:23:50Z leres $ (LBL)
+
+v3.3 Sat Mar 26 13:23:28 PDT 2022
+
+- Fix direction of memmove() in sanity_fddi().
 
 v3.2 Wed Dec 15 14:08:29 PST 2021
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/arpwatch-3.2/VERSION new/arpwatch-3.3/VERSION
--- old/arpwatch-3.2/VERSION    2021-12-15 22:52:17.000000000 +0100
+++ new/arpwatch-3.3/VERSION    2022-03-26 21:23:33.000000000 +0100
@@ -1 +1 @@
-3.2
+3.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/arpwatch-3.2/arpwatch.c new/arpwatch-3.3/arpwatch.c
--- old/arpwatch-3.2/arpwatch.c 2019-11-30 19:35:23.000000000 +0100
+++ new/arpwatch-3.3/arpwatch.c 2022-01-08 02:26:27.000000000 +0100
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1990, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2009, 
2010, 2011, 2012, 2013, 2016, 2019
+ * Copyright (c) 1990, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2009, 
2010, 2011, 2012, 2013, 2016, 2019, 2022
  * The Regents of the University of California. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -27,10 +27,10 @@
  */
 #ifndef lint
 static const char copyright[] =
-    "Copyright (c) 1990, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2009, 
2010, 2011, 2012, 2013, 2016, 2019\n\
+    "Copyright (c) 1990, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2009, 
2010, 2011, 2012, 2013, 2016, 2019, 2022\n\
 The Regents of the University of California.  All rights reserved.\n";
 static const char rcsid[] =
-    "@(#) $Id: arpwatch.c 1505 2019-11-30 18:35:23Z leres $ (LBL)";
+    "@(#) $Id: arpwatch.c 1533 2022-01-08 01:26:27Z leres $ (LBL)";
 #endif
 
 /*
@@ -684,9 +684,9 @@
         * as shorts */
 
        memmove(&type, fh->snap.snap_type, sizeof(u_short));
-       memmove(&(ea->arp_hrd), &hrd, sizeof(hrd));
-       memmove(&(ea->arp_pro), &pro, sizeof(pro));
-       memmove(&(ea->arp_op), &op, sizeof(op));
+       memmove(&hrd, &(ea->arp_hrd), sizeof(hrd));
+       memmove(&pro, &(ea->arp_pro), sizeof(pro));
+       memmove(&op, &(ea->arp_op), sizeof(op));
 
        type = ntohs(type);
        hrd = ntohs(hrd);
@@ -844,7 +844,7 @@
                nets_size = size;
                nets_ind = ind;
                nets = ns;
-       } else if ( action == SKIP) {
+       } else if (action == SKIP) {
                skipnets_size = size;
                skipnets_ind = ind;
                skipnets = ns;

Reply via email to