X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/04e1fa7cf5163aa784baaf3292ccb3b49e296410..b21932acccc991542677427aa034e563955ca5e1:/lib/rights.c diff --git a/lib/rights.c b/lib/rights.c index d03eae1..05a3342 100644 --- a/lib/rights.c +++ b/lib/rights.c @@ -2,29 +2,25 @@ * This file is part of DisOrder * Copyright (C) 2007 Richard Kettlewell * - * This program is free software; you can redistribute it and/or modify + * This program 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 + * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * This program 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. - * + * + * This program 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 this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 - * USA + * along with this program. If not, see . */ /** @file lib/rights.c * @brief User rights */ -#include -#include "types.h" +#include "common.h" -#include #include "mem.h" #include "log.h" @@ -78,16 +74,18 @@ char *rights_string(rights_type r) { /** @brief Parse a rights list * @param s Rights list in string form * @param rp Where to store rights, or NULL to just validate + * @param report Nonzero to log errors * @return 0 on success, non-0 if @p s is not valid */ -int parse_rights(const char *s, rights_type *rp) { +int parse_rights(const char *s, rights_type *rp, int report) { rights_type r = 0; const char *t; size_t n, l; if(!*s) { /* You can't have no rights */ - error(0, "empty rights string"); + if(report) + error(0, "empty rights string"); return -1; } while(*s) { @@ -103,7 +101,8 @@ int parse_rights(const char *s, rights_type *rp) { && !strncmp(rights_names[n].name, s, l)) break; if(n >= NRIGHTS) { - error(0, "unknown user right '%.*s'", (int)l, s); + if(report) + error(0, "unknown user right '%.*s'", (int)l, s); return -1; } r |= rights_names[n].bit;