From d1c7d7d21aae536f80bba0d5fa5136c598392394 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B6rn=20Jacke?= Date: Tue, 9 Feb 2010 09:09:57 +0100 Subject: [PATCH] vfs_catia: fix return type warnings --- source3/modules/vfs_catia.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/modules/vfs_catia.c b/source3/modules/vfs_catia.c index f1d0cadee75..177458bce28 100644 --- a/source3/modules/vfs_catia.c +++ b/source3/modules/vfs_catia.c @@ -235,7 +235,7 @@ static NTSTATUS catia_string_replace_allocate(connection_struct *conn, } if ((push_ucs2_talloc(ctx, &tmpbuf, name_in, - &converted_size)) == -1) { + &converted_size)) == false) { return map_nt_error_from_unix(errno); } ptr = tmpbuf; @@ -252,7 +252,7 @@ static NTSTATUS catia_string_replace_allocate(connection_struct *conn, } if ((pull_ucs2_talloc(ctx, mapped_name, tmpbuf, - &converted_size)) == -1) { + &converted_size)) == false) { TALLOC_FREE(tmpbuf); return map_nt_error_from_unix(errno); } -- 2.11.4.GIT