summaryrefslogtreecommitdiff
path: root/debian/patches/12-fix-spelling-libixp.patch
blob: 9301377cf284ea4395fd12ead8e907feb7d884a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Description: Fix spelling in libixp.
Author: Andrew O. Shadoura <bugzilla@tut.by>

--- a/libixp/rpc.c
+++ b/libixp/rpc.c
@@ -108,12 +108,12 @@
 	thread->lock(&mux->lk);
 	/* hand packet to correct sleeper */
 	if(tag < 0 || tag >= mux->mwait) {
-		fprintf(stderr, "libixp: recieved unfeasible tag: %d (min: %d, max: %d)\n", f->hdr.tag, mux->mintag, mux->mintag+mux->mwait);
+		fprintf(stderr, "libixp: received unfeasible tag: %d (min: %d, max: %d)\n", f->hdr.tag, mux->mintag, mux->mintag+mux->mwait);
 		goto fail;
 	}
 	r2 = mux->wait[tag];
 	if(r2 == nil || r2->prev == nil) {
-		fprintf(stderr, "libixp: recieved message with bad tag\n");
+		fprintf(stderr, "libixp: received message with bad tag\n");
 		goto fail;
 	}
 	r2->p = f;