--- l2_ch_fd.c 2002/07/31 07:39:21 1.15
+++ l2_ch_fd.c 2003/01/06 11:41:51 1.16
@@ -1,9 +1,10 @@
/*
-** OSSP l2 - Logging Library
-** Copyright (c) 2001-2002 The OSSP Project (http://www.ossp.org/)
-** Copyright (c) 2001-2002 Cable & Wireless Deutschland (http://www.cw.com/de/)
+** OSSP l2 - Flexible Logging
+** Copyright (c) 2001-2003 Cable & Wireless Deutschland GmbH
+** Copyright (c) 2001-2003 The OSSP Project (http://www.ossp.org/)
+** Copyright (c) 2001-2003 Ralf S. Engelschall <rse@engelschall.com>
**
-** This file is part of OSSP L2, a flexible logging library which
+** This file is part of OSSP l2, a flexible logging library which
** can be found at http://www.ossp.org/pkg/lib/l2/.
**
** Permission to use, copy, modify, and distribute this software for
@@ -45,7 +46,7 @@
return L2_ERR_MEM;
/* initialize configuration with reasonable defaults */
- cfg->fd = -1;
+ cfg->fd = -1;
/* link private channel configuration into channel context */
ctx->vp = cfg;
@@ -57,7 +58,7 @@
static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list ap)
{
l2_ch_fd_t *cfg;
- l2_param_t pa[1];
+ l2_param_t pa[1];
l2_result_t rv;
l2_env_t *env;
@@ -136,7 +137,7 @@
static l2_result_t hook_destroy(l2_context_t *ctx, l2_channel_t *ch)
{
/* parameter checks */
- if (ctx->vp == NULL)
+ if (ctx->vp == NULL)
return L2_ERR_ARG;
/* destroy channel configuration */
|