--- act_chain.h 2002/01/19 13:12:03 1.1
+++ act_chain.h 2003/01/06 12:10:57 1.2
@@ -1,9 +1,10 @@
-/*
-** Act - Abstract Container Type Library
-** Copyright (c) 1999-2002 Ralf S. Engelschall <rse@engelschall.com>
+/*
+** OSSP act - Abstract Container Types
+** Copyright (c) 1999-2003 Ralf S. Engelschall <rse@engelschall.com>
+** Copyright (c) 1999-2003 The OSSP Project <http://www.ossp.org/>
**
-** This file is part of Act, a library for dealing with Abstract
-** Container Types which can be found at http://www.ossp.org/pkg/act/.
+** This file is part of OSSP act, an abstract container type library
+** which can be found at http://www.ossp.org/pkg/lib/act/.
**
** Permission to use, copy, modify, and distribute this software for
** any purpose with or without fee is hereby granted, provided that
@@ -68,7 +69,7 @@
ACT_LIST_FIRST((hp)) = (ep); } while (0)
#define ACT_LIST_INSERT_AFTER(ap, ep, field) \
do { ACT_LIST_NEXT((ep), field) = ACT_LIST_NEXT((ap), field); \
- ACT_LIST_NEXT((ap), field) = (ep); } while (0)
+ ACT_LIST_NEXT((ap), field) = (ep); } while (0)
/* remove */
#define ACT_LIST_REMOVE_HEAD(hp, field) \
|