summaryrefslogtreecommitdiff
path: root/com32/libupload/upload_tftp.c
diff options
context:
space:
mode:
Diffstat (limited to 'com32/libupload/upload_tftp.c')
-rw-r--r--com32/libupload/upload_tftp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/com32/libupload/upload_tftp.c b/com32/libupload/upload_tftp.c
index 8ca87528..1e0b0702 100644
--- a/com32/libupload/upload_tftp.c
+++ b/com32/libupload/upload_tftp.c
@@ -52,13 +52,13 @@ static int upload_tftp_write(struct upload_backend *be) {
parse_url(&url, url_path);
err = -url_set_ip(&url);
- if (err != TFTP_OK)
+ if (err != TFTP_ERR_OK)
return err;
dprintf("Connecting to %s to send %s\n", url.host, url.path);
err = -tftp_put(&url, 0, &inode, NULL, be->outbuf, be->zbytes);
- if (err != TFTP_OK) {
+ if (err != TFTP_ERR_OK) {
printf("upload_tftp_write: TFTP server returned error %d : %s\n",
err, tftp_string_error_message[err]);
}