libreplace: Use true rather than True in xattr.c
authorAndrew Bartlett <abartlet@samba.org>
Sat, 2 Jun 2012 22:14:00 +0000 (08:14 +1000)
committerAndrew Bartlett <abartlet@samba.org>
Sun, 3 Jun 2012 00:05:35 +0000 (02:05 +0200)
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

lib/replace/xattr.c

index c08ac3aeab4ea9e86b8079df271d57a98f1ef128..6518f31dcd1e681e85817f593a94be1880939e7f 100644 (file)
@@ -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