Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Dec 1995 07:06:24 +0100
From:      "Philippe Charnier" <charnier@lirmm.fr>
To:        bugs@freebsd.org
Subject:   some typos, bug fixes
Message-ID:  <199512180606.HAA03127@lirmm.lirmm.fr>

index | next in thread | raw e-mail

Hi,

===================================================================
RCS file: /home2h/FreeBSD.cvsroot/src/games/sail/pl_main.c,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 pl_main.c
--- pl_main.c	1994/09/04 04:03:18	1.1.1.1
+++ pl_main.c	1995/12/16 17:17:38
@@ -198,7 +198,13 @@
 	else {
 		(void) printf("Your name, Captain? ");
 		(void) fflush(stdout);
-		(void) gets(captain);
+		(void) fgets(captain, sizeof(captain), stdin);
+		{ int len;
+
+                  len = strlen(captain);
+		  if (captain[len - 1] == '\n')
+			captain[len - 1] = '\0';
+		}
 		if (!*captain)
 			(void) strcpy(captain, "no name");
 	}
===================================================================
RCS file: /home2h/FreeBSD.cvsroot/src/gnu/usr.bin/gdb/gdb/parser-defs.h,v
retrieving revision 1.3
diff -u -r1.3 parser-defs.h
--- parser-defs.h	1995/05/30 04:57:40	1.3
+++ parser-defs.h	1995/12/16 17:32:34
@@ -22,6 +22,9 @@
 #if !defined (PARSER_DEFS_H)
 #define PARSER_DEFS_H 1
 
+#include "symtab.h"
+
+
 struct std_regs {
 	char *name;
 	int regnum;
===================================================================
RCS file: /home2h/FreeBSD.cvsroot/src/lib/libc/gen/sysctl.3,v
retrieving revision 1.3
diff -u -r1.3 sysctl.3
--- sysctl.3	1994/10/18 03:42:18	1.3
+++ sysctl.3	1995/12/16 16:25:54
@@ -38,6 +38,7 @@
 .Nm sysctl
 .Nd get or set system information
 .Sh SYNOPSIS
+.Fd #include <sys/param.h>
 .Fd #include <sys/sysctl.h>
 .Ft int
 .Fn sysctl "int *name" "u_int namelen" "void *oldp" "size_t *oldlenp" "void *newp" "size_t newlen"
@@ -51,7 +52,7 @@
 consists of integers, strings, and tables.
 Information may be retrieved and set from the command interface
 using the 
-.Xr sysctl 1
+.Xr sysctl 8
 utility.
 .Pp
 Unless explicitly noted below,
===================================================================
RCS file: /home2h/FreeBSD.cvsroot/src/share/man/man1/intro.1,v
retrieving revision 1.2
diff -u -r1.2 intro.1
--- intro.1	1995/02/28 00:19:41	1.2
+++ intro.1	1995/12/16 19:44:52
@@ -64,6 +64,7 @@
 .Xr intro 4
 .Xr intro 7
 .Xr intro 8
+.Xr intro 9
 .Pp
 Tutorials in the
 .%T "UNIX User's Manual Supplementary Documents" .
===================================================================
RCS file: /home2h/FreeBSD.cvsroot/src/share/man/man9/intro.9,v
retrieving revision 1.2
diff -u -r1.2 intro.9
--- intro.9	1995/12/14 10:50:24	1.2
+++ intro.9	1995/12/16 18:02:09
@@ -82,7 +82,7 @@
 #endif /* DDB */
 .Ed
 
-And the name of the procedure shoule start with the prefix
+And the name of the procedure should start with the prefix
 .Li DDB_ 
 to clearly identify the procedure as a debugger routine.
 .El
@@ -95,7 +95,7 @@
 
 There are several reasons for this policy,
 the main one is that the kernel is one monolithic name-space,
-and polution is not a good idea here either.
+and pollution is not a good idea here either.
 
 For device drivers and other modules that don't add new internal interfaces
 to the kernel, the entire source should be in one file it possible.
===================================================================
RCS file: /home2h/FreeBSD.cvsroot/src/usr.sbin/ctm/ctm/ctm.1,v
retrieving revision 1.2
diff -u -r1.2 ctm.1
--- ctm.1	1995/03/26 20:09:46	1.2
+++ ctm.1	1995/12/16 18:46:46
@@ -131,7 +131,7 @@
 .Sh SEE ALSO
 
 .Xr ctm 5
-.Pq yet to be written .
+.Xr ctm_rmail 1
 
 .Sh HISTORY
 
@@ -140,7 +140,7 @@
 
 The
 .Nm ctm
-command appeared in FreeBSD 2.1.
+command appeared in FreeBSD 2.0.5.
 
 .Sh AUTHORS
 
===================================================================
RCS file: /home2h/FreeBSD.cvsroot/src/usr.sbin/ctm/ctm/ctm.5,v
retrieving revision 1.2
diff -u -r1.2 ctm.5
--- ctm.5	1995/03/26 20:09:48	1.2
+++ ctm.5	1995/12/16 18:33:36
@@ -197,7 +197,7 @@
 
 Initial trials ran during the FreeBSD 1.1.5, and many bugs and 
 methods were hashed out.
-The CTM system has been made publically available in FreeBSD 2.1.
+The CTM system has been made publically available in FreeBSD 2.0.5.
 
 .Sh AUTHORS
 
===================================================================
RCS file: /home2h/FreeBSD.cvsroot/src/usr.sbin/ctm/ctm_rmail/ctm_rmail.1,v
retrieving revision 1.4
diff -u -r1.4 ctm_rmail.1
--- ctm_rmail.1	1995/02/25 05:10:17	1.4
+++ ctm_rmail.1	1995/12/16 18:44:44
@@ -46,10 +46,6 @@
 optionally call
 .Xr ctm
 to apply it to the source tree.
-At the moment,
-only two source trees are distributed, and both by the same site.  These are
-the FreeBSD-current source and CVS trees, distributed by
-.Li ref.tfs.com .
 .Pp
 Command line arguments for
 .Nm ctm_smail :
@@ -346,7 +342,7 @@
 .\" .Sh ERRORS
 .Sh SEE ALSO
 .Xr ctm 1
-(coming soon)
+.Xr ctm 5
 .\" .Sh STANDARDS
 .\" .Sh HISTORY
 .Sh AUTHOR

--------                                                        --------
Philippe Charnier                                      charnier@lirmm.fr
                               

         LIRMM, 161 rue Ada, 34392 Montpellier cedex 5 -- France
------------------------------------------------------------------------



help

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199512180606.HAA03127>