rtnetlink-link: Make 'attrs' local variable non-static.
authorBen Pfaff <blp@nicira.com>
Tue, 23 Apr 2013 23:04:57 +0000 (16:04 -0700)
committerBen Pfaff <blp@nicira.com>
Tue, 11 Jun 2013 20:35:01 +0000 (13:35 -0700)
I don't see any reason for this variable to be static.

CC: Ethan Jackson <ethan@nicira.com>
Signed-off-by: Ben Pfaff <blp@nicira.com>
lib/rtnetlink-link.c

index 0b3710f..459e485 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2009, 2010 Nicira, Inc.
+ * Copyright (c) 2009, 2010, 2013 Nicira, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -49,7 +49,7 @@ rtnetlink_link_parse(struct ofpbuf *buf,
         [IFLA_ADDRESS] = { .type = NL_A_UNSPEC, .optional = true },
     };
 
-    static struct nlattr *attrs[ARRAY_SIZE(policy)];
+    struct nlattr *attrs[ARRAY_SIZE(policy)];
 
     parsed = nl_policy_parse(buf, NLMSG_HDRLEN + sizeof(struct ifinfomsg),
                              policy, attrs, ARRAY_SIZE(policy));