git: 9front

Download patch

ref: aa8b82685f1eb826bbfb05d924a80215ec9f8c82
parent: 6f4f7004681fb3156bdccfe9619423541801e5d1
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);
 }
--