From: Andrew Bartlett Date: Sat, 2 Jun 2012 22:14:00 +0000 (+1000) Subject: libreplace: Use true rather than True in xattr.c X-Git-Tag: samba-4.0.0beta1~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33eb88e6deeba554ff2d8a862ea67aa35ffafae9;p=thirdparty%2Fsamba.git libreplace: Use true rather than True in xattr.c This should fix the build on IRIX. Andrew Bartlett Autobuild-User: Andrew Bartlett Autobuild-Date: Sun Jun 3 02:05:35 CEST 2012 on sn-devel-104 --- diff --git a/lib/replace/xattr.c b/lib/replace/xattr.c index c08ac3aeab4..6518f31dcd1 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