Index: ossp-pkg/l2/README RCS File: /v/ossp/cvs/ossp-pkg/l2/README,v rcsdiff -q -kk '-r1.10' '-r1.10.2.1' -u '/v/ossp/cvs/ossp-pkg/l2/README,v' 2>/dev/null --- README 2003/01/06 11:41:51 1.10 +++ README 2004/02/17 09:22:00 1.10.2.1 @@ -25,7 +25,7 @@ Channels are implemented by channel handlers which can be even customer supplied for creating own channels which seamlessly integrate - into the framework. For convinience reasons, OSSP l2 already ships + into the framework. For convenience reasons, OSSP l2 already ships with pre-implemented filtering (noop, filter, prefix, buffer) and output (null, fd, file, pipe, socket, syslog, smtp) channels which already cover mostly all use cases of logging. Index: ossp-pkg/l2/l2.pod RCS File: /v/ossp/cvs/ossp-pkg/l2/l2.pod,v rcsdiff -q -kk '-r1.14' '-r1.14.2.1' -u '/v/ossp/cvs/ossp-pkg/l2/l2.pod,v' 2>/dev/null --- l2.pod 2003/01/06 11:41:51 1.14 +++ l2.pod 2004/02/17 09:22:00 1.14.2.1 @@ -60,7 +60,7 @@ Channels are implemented by channel handlers which can be even customer supplied for creating own channels which seamlessly integrate -into the framework. For convinience reasons, B already ships with +into the framework. For convenience reasons, B already ships with pre-implemented filtering (noop, filter, prefix, buffer) and output (null, fd, file, pipe, socket, syslog, smtp) channels which already cover mostly all use cases of logging. Index: ossp-pkg/l2/l2_ut_sa.c RCS File: /v/ossp/cvs/ossp-pkg/l2/l2_ut_sa.c,v rcsdiff -q -kk '-r1.21' '-r1.21.2.1' -u '/v/ossp/cvs/ossp-pkg/l2/l2_ut_sa.c,v' 2>/dev/null --- l2_ut_sa.c 2003/02/10 10:13:23 1.21 +++ l2_ut_sa.c 2004/02/17 09:22:00 1.21.2.1 @@ -1816,7 +1816,7 @@ return SA_RC(rv); } -/* read data from socket until [CR]LF (convinience function) */ +/* read data from socket until [CR]LF (convenience function) */ sa_rc_t sa_readln(sa_t *sa, char *cpBuf, size_t nBufReq, size_t *nBufRes) { char c; @@ -1981,7 +1981,7 @@ return (int)n; } -/* write formatted string to socket (convinience function) */ +/* write formatted string to socket (convenience function) */ sa_rc_t sa_writef(sa_t *sa, const char *cpFmt, ...) { va_list ap; @@ -2194,7 +2194,7 @@ return SA_OK; } -/* send formatted string to socket (convinience function) */ +/* send formatted string to socket (convenience function) */ sa_rc_t sa_sendf(sa_t *sa, sa_addr_t *raddr, const char *cpFmt, ...) { va_list ap;