summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorneal <neal>2008-06-28 11:50:28 +0000
committerneal <neal>2008-06-28 11:50:28 +0000
commit863d49e765e667d2b8d43fe8dd3b45bc569bd28b (patch)
tree814a2b48b804c4d26985cad6c62de4ba9c192f38
parentc314b447a633a3aa2d1e4a882675038fd381e873 (diff)
2008-06-28 Neal H. Walfield <neal@gnu.org>
* server.c (server_loop): Fix debug statement.
-rw-r--r--viengoos/ChangeLog4
-rw-r--r--viengoos/server.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/viengoos/ChangeLog b/viengoos/ChangeLog
index b0ef8d2..10a576a 100644
--- a/viengoos/ChangeLog
+++ b/viengoos/ChangeLog
@@ -1,3 +1,7 @@
+2008-06-28 Neal H. Walfield <neal@gnu.org>
+
+ * server.c (server_loop): Fix debug statement.
+
2008-06-27 Neal H. Walfield <neal@gnu.org>
* activity.h (struct activity): Add fields free_bad_karma,
diff --git a/viengoos/server.c b/viengoos/server.c
index 153477a..91be791 100644
--- a/viengoos/server.c
+++ b/viengoos/server.c
@@ -1381,9 +1381,9 @@ server_loop (void)
"period: %d (current: %d)\n",
OBJECT_NAME_PRINTF ((struct object *) principal),
flags & activity_info_stats ? "stats" : "",
- (flags == (activity_info_free|activity_info_stats))
+ (flags == (activity_info_pressure|activity_info_stats))
? ", " : "",
- flags & activity_info_free ? "free" : "",
+ flags & activity_info_pressure ? "pressure" : "",
flags,
until_period, principal->stats[period].period);