Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2011-06-14 18:20:40 +0000
committereutarass2011-06-14 18:20:40 +0000
commit9d9be18b5b3199215d36d2b84b5992b702be0b66 (patch)
tree4d46da0ad320a7196d8ffa93d5a1dd4a4f027bcd
parent082e53bd78cbfd1611c0c5e7c94644937a5b158a (diff)
downloadorg.eclipse.tcf.agent-9d9be18b5b3199215d36d2b84b5992b702be0b66.tar.gz
org.eclipse.tcf.agent-9d9be18b5b3199215d36d2b84b5992b702be0b66.tar.xz
org.eclipse.tcf.agent-9d9be18b5b3199215d36d2b84b5992b702be0b66.zip
TCF Agent: fixed misspelled function name.
-rw-r--r--services/filesystem.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/services/filesystem.c b/services/filesystem.c
index b8c7c53d..2c7cdfd0 100644
--- a/services/filesystem.c
+++ b/services/filesystem.c
@@ -510,7 +510,7 @@ static void reply_setstat(char * token, OutputStream * out, int err) {
write_stream(out, MARKER_EOM);
}
-static void post_io_requst(OpenFileInfo * handle);
+static void post_io_request(OpenFileInfo * handle);
static void done_io_request(void * arg) {
int err = 0;
@@ -596,10 +596,10 @@ static void done_io_request(void * arg) {
loc_free(req->info.u.fio.bufp);
loc_free(req);
- post_io_requst(handle);
+ post_io_request(handle);
}
-static void post_io_requst(OpenFileInfo * handle) {
+static void post_io_request(OpenFileInfo * handle) {
while (handle->posted_req == NULL && !list_is_empty(&handle->link_reqs)) {
LINK * link = handle->link_reqs.next;
IORequest * req = reqs2req(link);
@@ -693,7 +693,7 @@ static void command_close(char * token, Channel * c) {
IORequest * req = create_io_request(token, h, REQ_CLOSE);
req->info.type = AsyncReqClose;
req->info.u.fio.fd = h->file;
- post_io_requst(h);
+ post_io_request(h);
return;
}
@@ -730,7 +730,7 @@ static void command_read(char * token, Channel * c) {
req->info.u.fio.fd = h->file;
req->info.u.fio.bufp = loc_alloc(len);
req->info.u.fio.bufsz = len;
- post_io_requst(h);
+ post_io_request(h);
}
}
@@ -782,7 +782,7 @@ static void command_write(char * token, Channel * c) {
req->info.u.fio.bufp = loc_alloc(len);
req->info.u.fio.bufsz = len;
memcpy(req->info.u.fio.bufp, buf, len);
- post_io_requst(h);
+ post_io_request(h);
}
}
@@ -830,7 +830,7 @@ static void command_fstat(char * token, Channel * c) {
}
else {
create_io_request(token, h, REQ_FSTAT);
- post_io_requst(h);
+ post_io_request(h);
}
}
@@ -898,7 +898,7 @@ static void command_fsetstat(char * token, Channel * c) {
else {
IORequest * req = create_io_request(token, h, REQ_FSETSTAT);
req->attrs = attrs;
- post_io_requst(h);
+ post_io_request(h);
}
}

Back to the top