Index: ossp-pkg/fsl/TODO RCS File: /v/ossp/cvs/ossp-pkg/fsl/Attic/TODO,v co -q -kk -p'1.6' '/v/ossp/cvs/ossp-pkg/fsl/Attic/TODO,v' | diff -u - /dev/null -L'ossp-pkg/fsl/TODO' 2>/dev/null --- ossp-pkg/fsl/TODO +++ /dev/null 2024-05-08 00:55:00.000000000 +0200 @@ -1,2 +0,0 @@ -- cfg_destroy fixing and use it -- runtime version check for sub libraries Index: ossp-pkg/fsl/fsl.pod RCS File: /v/ossp/cvs/ossp-pkg/fsl/fsl.pod,v rcsdiff -q -kk '-r1.17' '-r1.18' -u '/v/ossp/cvs/ossp-pkg/fsl/fsl.pod,v' 2>/dev/null --- fsl.pod 2002/07/30 18:50:36 1.17 +++ fsl.pod 2002/07/31 07:39:20 1.18 @@ -191,10 +191,10 @@ =head2 Filedescriptor Output Channel (fd) The B channel passes messages poured in from upper channels to the -open file identified by the given I. Note that Unix +open file identified by the filedescriptor passed through I. Note that Unix usually allocates C<1> for F and C<2> for F. - o fd (INT filedescriptor m + o fd (INT fd m ) =head2 File Output Channel (file) @@ -355,7 +355,7 @@ (filedescriptor 2): ident .* - fd(filedescriptor=2) + fd(fd=2) =head2 Example 2: simple logfile writing Index: ossp-pkg/l2/l2_ch_fd.c RCS File: /v/ossp/cvs/ossp-pkg/l2/l2_ch_fd.c,v rcsdiff -q -kk '-r1.14' '-r1.15' -u '/v/ossp/cvs/ossp-pkg/l2/l2_ch_fd.c,v' 2>/dev/null --- l2_ch_fd.c 2002/07/30 19:08:24 1.14 +++ l2_ch_fd.c 2002/07/31 07:39:21 1.15 @@ -66,7 +66,7 @@ return L2_ERR_ARG; /* feed and call generic parameter parsing engine */ - L2_PARAM_SET(pa[0], filedescriptor, INT, &cfg->fd); + L2_PARAM_SET(pa[0], fd, INT, &cfg->fd); L2_PARAM_END(pa[1]); l2_channel_env(ch, &env); rv = l2_util_setparams(env, pa, fmt, ap);