diff options
author | Herb Lewis <herb@samba.org> | 2002-08-20 00:20:23 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2002-08-20 00:20:23 +0000 |
commit | 03615599919f94c5ed56e9824343b02f4f3e0b71 (patch) | |
tree | 600b3c8d3d3f23046eb4cbe66453d4b5ebb75412 /source3/libsmb | |
parent | 2c52b62df05642ae25216a47554f6fb7f23639a4 (diff) | |
download | samba-03615599919f94c5ed56e9824343b02f4f3e0b71.tar.gz samba-03615599919f94c5ed56e9824343b02f4f3e0b71.tar.bz2 samba-03615599919f94c5ed56e9824343b02f4f3e0b71.zip |
fix irix compiler error
(This used to be commit 4df7983487545a432cfa8832eae1afbdf7866060)
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/namecache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/namecache.c b/source3/libsmb/namecache.c index fc09d8eac2..e69d462268 100644 --- a/source3/libsmb/namecache.c +++ b/source3/libsmb/namecache.c @@ -29,7 +29,7 @@ static TDB_CONTEXT *namecache_tdb; struct nc_value { time_t expiry; /* When entry expires */ int count; /* Number of addresses */ - struct in_addr ip_list[0]; /* Address list */ + struct in_addr *ip_list; /* Address list */ }; /* Initialise namecache system */ |