summaryrefslogtreecommitdiff
path: root/lib/acl_entries.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2008-05-23 03:48:39 +0200
committerBruno Haible <bruno@clisp.org>2008-05-23 04:16:57 +0200
commitff84d0d57ac533cbe622bde0543bac509a49daaa (patch)
tree9e08573716a479fc4b6105e6b87ea5d2a8be8784 /lib/acl_entries.c
parentf9561cd0447af3eac645a36b7edccf309fcd359d (diff)
downloadgnulib-ff84d0d57ac533cbe622bde0543bac509a49daaa.tar.gz
Add support for ACLs on OSF/1.
Diffstat (limited to 'lib/acl_entries.c')
-rw-r--r--lib/acl_entries.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/acl_entries.c b/lib/acl_entries.c
index 43c752db5e..cd3c38b145 100644
--- a/lib/acl_entries.c
+++ b/lib/acl_entries.c
@@ -1,6 +1,6 @@
/* Return the number of entries in an ACL.
- Copyright (C) 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
+ Copyright (C) 2002-2003, 2005-2008 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -33,6 +33,6 @@ acl_entries (acl_t acl)
return -1;
for (t = text; *t; t++)
entries += (*t == '\n');
- acl_free (text);
+ acl_free_text (text);
return entries;
}