1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-22 22:04:08 +03:00

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
This commit is contained in:
Andrew Bartlett 2012-06-03 08:14:00 +10:00
parent e7dcb9125c
commit 33eb88e6de

View 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