This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[COMMITED][BZ #15847] Fix typos.


This is second typo fixing patch from bugzilla that qualifies as
obvious.

./ChangeLog:


	* iconv/iconv_prog.c: Fix typos.
	* stdio-common/psiginfo-data.h: Likewise.

./ports/ChangeLog.alpha:


	* sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S: Fix typos.
	* sysdeps/unix/sysv/linux/alpha/nptl/vfork.S: Likewise.


diff --git a/iconv/iconv_prog.c b/iconv/iconv_prog.c
index 1a1d0d0..11c7f08 100644
--- a/iconv/iconv_prog.c
+++ b/iconv/iconv_prog.c
@@ -789,7 +789,7 @@ print_known_names (void)
 
   if (human_readable)
     fputs (_("\
-The following list contain all the coded character sets known.  This does\n\
+The following list contains all the coded character sets known.  This does\n\
 not necessarily mean that all combinations of these names can be used for\n\
 the FROM and TO command line parameters.  One coded character set can be\n\
 listed with several different names (aliases).\n\n  "), stdout);
diff --git a/ports/sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S b/ports/sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S
index d9629b9..50b152d 100644
--- a/ports/sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S
+++ b/ports/sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S
@@ -25,7 +25,7 @@
 	ldl	a2, PID_OFFSET(v0);					\
 	mov	v0, a1;							\
 	/* Write back its negation, to indicate that the pid value is	\
-	   uninitialized in the the child, and in the window between	\
+	   uninitialized in the child, and in the window between	\
 	   here and the point at which we restore the value.  */	\
 	negl	a2, t0;							\
 	stl	t0, PID_OFFSET(v0);
diff --git a/ports/sysdeps/unix/sysv/linux/alpha/nptl/vfork.S b/ports/sysdeps/unix/sysv/linux/alpha/nptl/vfork.S
index 1ca7678..03aa37f 100644
--- a/ports/sysdeps/unix/sysv/linux/alpha/nptl/vfork.S
+++ b/ports/sysdeps/unix/sysv/linux/alpha/nptl/vfork.S
@@ -26,7 +26,7 @@
 	mov	v0, a1;							\
 	/* If the cached value is initialized (nonzero), then write	\
 	   back its negation, or INT_MIN, to indicate that the pid	\
-	   value is uninitialized in the the child, and in the window	\
+	   value is uninitialized in the child, and in the window	\
 	   between here and the point at which we restore the value.  */ \
 	ldah	t0, -0x8000;						\
 	negl	a2, t1;							\
diff --git a/stdio-common/psiginfo-data.h b/stdio-common/psiginfo-data.h
index 02ebf8a..05bb76c 100644
--- a/stdio-common/psiginfo-data.h
+++ b/stdio-common/psiginfo-data.h
@@ -34,7 +34,7 @@ P (TRAP_TRACE, N_("Process trace trap"))
 #if NOW == SIGCLD
 P (CLD_EXITED, N_("Child has exited"))
 P (CLD_KILLED, N_("Child has terminated abnormally and did not create a core file"))
-P (CLD_DUMPED, N_("Child hat terminated abnormally and created a core file"))
+P (CLD_DUMPED, N_("Child has terminated abnormally and created a core file"))
 P (CLD_TRAPPED, N_("Traced child has trapped"))
 P (CLD_STOPPED, N_("Child has stopped"))
 P (CLD_CONTINUED, N_("Stopped child has continued"))


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]