diff options
author | cinap_lenrek <cinap_lenrek@localhost> | 2011-08-22 03:06:24 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@localhost> | 2011-08-22 03:06:24 +0200 |
commit | 5f59367beb6ef75b67dad79c0f4a047a7b0a361a (patch) | |
tree | 79212a3776eb9a8d953976456a65aa175d389497 /sys/src/cmd/telco | |
parent | 68576f51196972e8a7f3d7db89244fd7278c2bbd (diff) |
fix flush error string
Diffstat (limited to 'sys/src/cmd/telco')
-rw-r--r-- | sys/src/cmd/telco/telco.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/telco/telco.c b/sys/src/cmd/telco/telco.c index f0cb5f8ea..32f0c23bb 100644 --- a/sys/src/cmd/telco/telco.c +++ b/sys/src/cmd/telco/telco.c @@ -696,7 +696,7 @@ void takeanote(void *u, char *note) { USED(u); - if(strstr(note, "flushed")) + if(strstr(note, "interrupted")) noted(NCONT); noted(NDFLT); } |