This is the mail archive of the libc-alpha@sources.redhat.com 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]

[PATCH] Fix vague message in DL_SYSDEP_OSCHECK


This patch changes vague message to more clear one in
sysdeps/unix/sysv/linux/dl-osinfo.h DL_SYSDEP_OSCHECK.  It's used for
kernel version check, but message does not say so.

Regards,
-- gotom

2004-12-17  GOTO Masanori  <gotom@debian.or.jp>

	* sysdeps/unix/sysv/linux/dl-osinfo.h (DL_SYSDEP_OSCHECK): Fix
	vague message.

Index: sysdeps/unix/sysv/linux/dl-osinfo.h
===================================================================
RCS file: /cvs/glibc/libc/sysdeps/unix/sysv/linux/dl-osinfo.h,v
retrieving revision 1.14
diff -u -r1.14 dl-osinfo.h
--- sysdeps/unix/sysv/linux/dl-osinfo.h	5 Mar 2004 10:14:48 -0000	1.14
+++ sysdeps/unix/sysv/linux/dl-osinfo.h	17 Dec 2004 00:40:01 -0000
@@ -65,7 +65,7 @@
 		|| (reslen = __read (fd, bufmem, sizeof (bufmem))) <= 0)      \
   	      /* This also didn't work.  We give up since we cannot	      \
 		 make sure the library can actually work.  */		      \
-	      FATAL ("FATAL: cannot determine library version\n");	      \
+	      FATAL ("FATAL: cannot determine kernel version\n");	      \
 	    __close (fd);						      \
 	    buf[MIN (reslen, (ssize_t) sizeof (bufmem) - 1)] = '\0';	      \
 	  }								      \


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