X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/0f55e9050dd26ab8804934a188f1ee8ab8b55ffe..refs/heads/master:/lib/rights.c
diff --git a/lib/rights.c b/lib/rights.c
index f0dc892..75a3d8e 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"
@@ -89,7 +85,7 @@ int parse_rights(const char *s, rights_type *rp, int report) {
if(!*s) {
/* You can't have no rights */
if(report)
- error(0, "empty rights string");
+ disorder_error(0, "empty rights string");
return -1;
}
while(*s) {
@@ -106,7 +102,7 @@ int parse_rights(const char *s, rights_type *rp, int report) {
break;
if(n >= NRIGHTS) {
if(report)
- error(0, "unknown user right '%.*s'", (int)l, s);
+ disorder_error(0, "unknown user right '%.*s'", (int)l, s);
return -1;
}
r |= rights_names[n].bit;