From 46605fb4f5024120f894f9894b8873c6a666a7a5 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 6 Feb 2007 20:03:53 +0000 Subject: * Fix 64-bit compiler warnings. --- src/nix-setuid-helper/nix-setuid-helper.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nix-setuid-helper') diff --git a/src/nix-setuid-helper/nix-setuid-helper.cc b/src/nix-setuid-helper/nix-setuid-helper.cc index ffb2abc1f164..58df479fc845 100644 --- a/src/nix-setuid-helper/nix-setuid-helper.cc +++ b/src/nix-setuid-helper/nix-setuid-helper.cc @@ -105,7 +105,7 @@ static void runBuilder(uid_t uidNix, gid_t gidBuildUsers, account. The idea is that the current directory is the temporary build directory in /tmp or somewhere else, and we don't want to create that directory here. */ - secureChown(uidNix, -1, uidTargetUser, gidBuildUsers, "."); + secureChown(uidNix, (gid_t) -1, uidTargetUser, gidBuildUsers, "."); /* Set the real, effective and saved gid. Must be done before setuid(), otherwise it won't set the real and saved gids. */ @@ -239,7 +239,7 @@ static void run(int argc, char * * argv) else if (command == "get-ownership") { /* Syntax: nix-setuid-helper get-ownership */ if (argc != 3) throw Error("missing path"); - secureChown(-1, gidBuildUsers, uidNix, gidBuildUsers, argv[2]); + secureChown((uid_t) -1, gidBuildUsers, uidNix, gidBuildUsers, argv[2]); } else if (command == "kill") { -- cgit 1.4.1