summaryrefslogtreecommitdiff
path: root/lib/replace/xattr.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-06-03 08:14:00 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-06-03 02:05:35 +0200
commit33eb88e6deeba554ff2d8a862ea67aa35ffafae9 (patch)
tree3397453110ff5e09b6107687a4ff4fd449933a45 /lib/replace/xattr.c
parente7dcb9125cb600770b330dcaa31296703c46cc7b (diff)
downloadsamba-33eb88e6deeba554ff2d8a862ea67aa35ffafae9.tar.gz
samba-33eb88e6deeba554ff2d8a862ea67aa35ffafae9.tar.bz2
samba-33eb88e6deeba554ff2d8a862ea67aa35ffafae9.zip
libreplace: Use true rather than True in xattr.c
This should fix the build on IRIX. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Sun Jun 3 02:05:35 CEST 2012 on sn-devel-104
Diffstat (limited to 'lib/replace/xattr.c')
-rw-r--r--lib/replace/xattr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/replace/xattr.c b/lib/replace/xattr.c
index c08ac3aeab..6518f31dcd 100644
--- a/lib/replace/xattr.c
+++ b/lib/replace/xattr.c
@@ -257,7 +257,7 @@ static ssize_t irix_attr_list(const char *path, int filedes, char *list, size_t
size_t ent_size, left = size;
char *bp = list;
- while (True) {
+ while (true) {
if (filedes)
retval = attr_listf(filedes, attr_buffer, ATTR_MAX_VALUELEN, flags, cursor);
else
@@ -283,7 +283,7 @@ static ssize_t irix_attr_list(const char *path, int filedes, char *list, size_t
if (retval == 0) {
flags |= ATTR_ROOT;
cursor = 0;
- while (True) {
+ while (true) {
if (filedes)
retval = attr_listf(filedes, attr_buffer, ATTR_MAX_VALUELEN, flags, cursor);
else