X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/tripe/blobdiff_plain/52b866481399dfcecd295560800d3e3fe0090f24..8d513103f66617e96234d19813ab655ed9d5d13d:/common/util.c diff --git a/common/util.c b/common/util.c index 92b9853d..a3f931cd 100644 --- a/common/util.c +++ b/common/util.c @@ -9,19 +9,18 @@ * * This file is part of Trivial IP Encryption (TrIPE). * - * TrIPE is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * TrIPE is free software: you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free + * Software Foundation; either version 3 of the License, or (at your + * option) any later version. * - * TrIPE is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * TrIPE is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. * * You should have received a copy of the GNU General Public License - * along with TrIPE; if not, write to the Free Software Foundation, - * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * along with TrIPE. If not, see . */ /*----- Header files ------------------------------------------------------*/ @@ -70,6 +69,7 @@ void u_quotify(dstr *d, const char *p) } dstr_putc(d, '\"'); } + dstr_putz(d); } /* --- @u_getuser@ --- * @@ -137,7 +137,9 @@ gid_t u_getgroup(const char *name) void u_setugid(uid_t u, gid_t g) { - if (g != (gid_t)-1) { + uid_t cu = geteuid(); + + if (cu == 0 && g != (gid_t)-1) { if (setgid(g) || (getuid() == 0 && setgroups(1, &g))) { die(EXIT_FAILURE, "couldn't setgid to %u: %s", (unsigned)g, strerror(errno));