From 3ae6041f750c9b033b6bb4f051c4b4936a081751 Mon Sep 17 00:00:00 2001 From: Per Cederqvist <ceder@lysator.liu.se> Date: Thu, 14 Aug 2003 17:08:45 +0000 Subject: [PATCH] (enum kom_err): Added KOM_PRIORITY_DENIED, KOM_WEIGHT_DENIED and KOM_WEIGHT_ZERO. --- src/include/kom-errno.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/include/kom-errno.h b/src/include/kom-errno.h index 0fae26ea9..b3be59974 100644 --- a/src/include/kom-errno.h +++ b/src/include/kom-errno.h @@ -1,5 +1,5 @@ /* - * $Id: kom-errno.h,v 0.24 2003/07/24 08:38:16 ceder Exp $ + * $Id: kom-errno.h,v 0.25 2003/08/14 17:08:45 ceder Exp $ * Copyright (C) 1991-1994, 1996-1999, 2001-2002 Lysator Academic Computer Association. * * This file is part of the LysKOM server. @@ -95,6 +95,9 @@ enum kom_err KOM_INVALID_RANGE = 55, /* Invalid range (low >= high) */ KOM_INVALID_RANGE_LIST = 56, /* Invalid range list (not properly sorted) */ KOM_UNDEFINED_MEASUREMENT = 57, /* Bad measurement name. */ + KOM_PRIORITY_DENIED = 58, /* You cannot lower your priority that much. */ + KOM_WEIGHT_DENIED = 59, /* You cannot increase your weight that much.*/ + KOM_WEIGHT_ZERO = 60, /* You cannot increase your weight that much.*/ KOM_num_errs /* End marker */ }; -- GitLab