]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix build break due to vector changes
authorDaniel Colascione <dancol@dancol.org>
Tue, 24 Sep 2013 11:48:53 +0000 (03:48 -0800)
committerDaniel Colascione <dancol@dancol.org>
Tue, 24 Sep 2013 11:48:53 +0000 (03:48 -0800)
src/ChangeLog
src/process.c

index e4d9ad3b835315977e7b380af59d3a6dad1941ce..82517661164af3dd0cac3a0948f06928732f60e9 100644 (file)
@@ -1,3 +1,8 @@
+2013-09-24  Daniel Colascione  <dancol@dancol.org>
+
+       * process.c (Fnetwork_interface_info): Fix build break due to
+       vector changes.
+
 2013-09-24  Paul Eggert  <eggert@cs.ucla.edu>
 
        * dispnew.c (clear_glyph_row, copy_row_except_pointers):
index fcaa78947792c241047c2fbf2eabf21aac90eb0d..2ed8a69019377e5e29c83ea1979c016099c627c9 100644 (file)
@@ -3752,7 +3752,7 @@ FLAGS is the current flags of the interface.  */)
 
           memcpy (linkaddr, LLADDR (sdl), sdl->sdl_alen);
           for (n = 0; n < 6; n++)
-            p->contents[n] = make_number (linkaddr[n]);
+            p->u.contents[n] = make_number (linkaddr[n]);
 
           elt = Fcons (make_number (it->ifa_addr->sa_family), hwaddr);
           break;