summaryrefslogtreecommitdiffstats
path: root/sysdep
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-06-07 14:29:08 +0200
committerMartin Mares <mj@ucw.cz>2000-06-07 14:29:08 +0200
commit2e9b24211a523c754b9437d6b742d6df304d8aeb (patch)
tree8df91a3bdd2a704006dcb2ed97c49c6e4f36158c /sysdep
parente403aa89e50471eb6f2838117887b1207627ae3a (diff)
downloadbird-2e9b24211a523c754b9437d6b742d6df304d8aeb.tar
bird-2e9b24211a523c754b9437d6b742d6df304d8aeb.zip
Spelling fixes to progdoc.
Diffstat (limited to 'sysdep')
-rw-r--r--sysdep/sysdep.sgml2
-rw-r--r--sysdep/unix/io.c2
-rw-r--r--sysdep/unix/krt.c6
-rw-r--r--sysdep/unix/log.c2
4 files changed, 6 insertions, 6 deletions
diff --git a/sysdep/sysdep.sgml b/sysdep/sysdep.sgml
index 7d0d781..b9ccb63 100644
--- a/sysdep/sysdep.sgml
+++ b/sysdep/sysdep.sgml
@@ -16,7 +16,7 @@ code is isolated in a small set of modules:
<descrip>
<tagp><tt/config.h/</tagp> is a header file with configuration information,
definition of the standard set of types and so on.
-<tagp/Startup module/ controls BIRD startup. Common for a family of OS'es (e.g.,
+<tagp/Startup module/ controls BIRD startup. Common for a family of OS's (e.g.,
for all Unices).
<tagp/Logging module/ manages the system logs. [per OS family]
<tagp/IO module/ gives an implementation of sockets, timers and the
diff --git a/sysdep/unix/io.c b/sysdep/unix/io.c
index 3ba6ce6..f503bb9 100644
--- a/sysdep/unix/io.c
+++ b/sysdep/unix/io.c
@@ -888,7 +888,7 @@ sk_send(sock *s, unsigned len)
* @addr: IP address to send the packet to
* @port: port to send the packet to
*
- * This is a sk_send() replacement for connectionless packet sockets
+ * This is a sk_send() replacement for connection-less packet sockets
* which allows destination of the packet to be chosen dynamically.
*/
int
diff --git a/sysdep/unix/krt.c b/sysdep/unix/krt.c
index 7aee1f6..2b4117c 100644
--- a/sysdep/unix/krt.c
+++ b/sysdep/unix/krt.c
@@ -16,14 +16,14 @@
* The whole kernel synchronization is a bit messy and touches some internals
* of the routing table engine, because routing table maintenance is a typical
* example of the proverbial compatibility between different Unices and we want
- * to keep the overhead of our krt business as low as possible and avoid maintaining
+ * to keep the overhead of our KRT business as low as possible and avoid maintaining
* a local routing table copy.
*
* The kernel syncer can work in three different modes (according to system config header):
* Either with a single routing table and single KRT protocol [traditional Unix]
- * or with many routing tables and separate krt protocols for all of them
+ * or with many routing tables and separate KRT protocols for all of them
* or with many routing tables, but every scan including all tables, so we start
- * separate krt protocols which cooperate with each other [Linux 2.2].
+ * separate KRT protocols which cooperate with each other [Linux 2.2].
* In this case, we keep only a single scan timer.
*
* We use FIB node flags to keep track of route synchronization status. We also
diff --git a/sysdep/unix/log.c b/sysdep/unix/log.c
index 72450e5..6bbb644 100644
--- a/sysdep/unix/log.c
+++ b/sysdep/unix/log.c
@@ -107,7 +107,7 @@ vlog(int class, char *msg, va_list args)
* prepended (%L_DEBUG to %L_BUG, see |lib/birdlib.h|)
*
* This function formats a message according to the format string @msg
- * and writes it to the corresponding logfile (as specified in the
+ * and writes it to the corresponding log file (as specified in the
* configuration). Please note that the message is automatically
* formatted as a full line, no need to include |\n| inside.
*/