Module Name: src
Committed By: joerg
Date: Mon Apr 5 21:25:57 UTC 2010
Modified Files:
src/lib/libc/sys: select.2
Log Message:
\\ -> \e
To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 src/lib/libc/sys/select.2
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/sys/select.2
diff -u src/lib/libc/sys/select.2:1.37 src/lib/libc/sys/select.2:1.38
--- src/lib/libc/sys/select.2:1.37 Mon Mar 22 19:30:55 2010
+++ src/lib/libc/sys/select.2 Mon Apr 5 21:25:56 2010
@@ -1,4 +1,4 @@
-.\" $NetBSD: select.2,v 1.37 2010/03/22 19:30:55 joerg Exp $
+.\" $NetBSD: select.2,v 1.38 2010/04/05 21:25:56 joerg Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -207,11 +207,11 @@
break;
case 0:
- printf("Timeout, no data received.\\n");
+ printf("Timeout, no data received.\en");
break;
default:
- printf("Data received on %d file desciptor(s)\\n", ret);
+ printf("Data received on %d file desciptor(s)\en", ret);
/*
* select(2) hands back a file descriptor set where
@@ -220,7 +220,7 @@
*/
for (i = 0; i \*[Lt]= fd; i++) {
if (FD_ISSET(i, \*[Am]read_set)) {
- printf("Data on file descriptor %d\\n", i);
+ printf("Data on file descriptor %d\en", i);
/* Remove the file descriptor from the set */
FD_CLR(fd, \*[Am]read_set);
}