shithub: riscv

Download patch

ref: 5f59367beb6ef75b67dad79c0f4a047a7b0a361a
parent: 68576f51196972e8a7f3d7db89244fd7278c2bbd
author: cinap_lenrek <cinap_lenrek@localhost>
date: Sun Aug 21 23:06:24 EDT 2011

fix flush error string

--- a/sys/src/cmd/telco/telco.c
+++ b/sys/src/cmd/telco/telco.c
@@ -696,7 +696,7 @@
 takeanote(void *u, char *note)
 {
 	USED(u);
-	if(strstr(note, "flushed"))
+	if(strstr(note, "interrupted"))
 		noted(NCONT);
 	noted(NDFLT);
 }
--