summaryrefslogtreecommitdiff
path: root/inet
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2014-10-22 13:17:20 -0700
committerRoland McGrath <roland@hack.frob.com>2014-10-22 14:28:51 -0700
commitc6dfed243e0310bc3294c0fdf1816fceab024e9b (patch)
treebd587772105572514a6ed22a7ea1a82e8ede8e1f /inet
parent8c2b1ed8bbd20d35314c2a602b903159fa567ffb (diff)
Rework some nscd code not to use variable-length struct types.
Diffstat (limited to 'inet')
-rw-r--r--inet/netgroup.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/inet/netgroup.h b/inet/netgroup.h
index 490004589d..f772a09d82 100644
--- a/inet/netgroup.h
+++ b/inet/netgroup.h
@@ -26,7 +26,7 @@
struct name_list
{
struct name_list *next;
- char name[0];
+ char name[];
};