about summary refs log tree commit diff stats
path: root/src/ui
diff options
context:
space:
mode:
authorWilliam Wennerström <william@wstrm.dev>2020-07-02 22:04:21 +0200
committerWilliam Wennerström <william@wstrm.dev>2020-11-16 21:58:09 +0100
commit9499df65859abd1404d3f9e96b8af859d3315bff (patch)
tree3af8a29c089cd79df9e8581e18c4f94a91a07975 /src/ui
parent362c6973de1182554d33936403794d9aa5efe093 (diff)
downloadprofani-tty-9499df65859abd1404d3f9e96b8af859d3315bff.tar.gz
Add http_download tool
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/window.c2
-rw-r--r--src/ui/window.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/window.c b/src/ui/window.c
index 687af3b2..c03b3aab 100644
--- a/src/ui/window.c
+++ b/src/ui/window.c
@@ -1390,7 +1390,7 @@ win_appendln_highlight(ProfWin* window, theme_item_t theme_item, const char* con
 }
 
 void
-win_print_http_upload(ProfWin* window, const char* const message, char* url)
+win_print_http_transfer(ProfWin *window, const char *const message, char *url)
 {
     win_print_outgoing_with_receipt(window, "!", NULL, message, url, NULL);
 }
diff --git a/src/ui/window.h b/src/ui/window.h
index c731d19b..86d1dbfd 100644
--- a/src/ui/window.h
+++ b/src/ui/window.h
@@ -72,7 +72,7 @@ void win_println_incoming_muc_msg(ProfWin* window, char* show_char, int flags, c
 void win_print_outgoing_muc_msg(ProfWin* window, char* show_char, const char* const me, const char* const id, const char* const replace_id, const char* const message);
 void win_print_history(ProfWin* window, const ProfMessage* const message);
 
-void win_print_http_upload(ProfWin* window, const char* const message, char* url);
+void win_print_http_transfer(ProfWin *window, const char *const message, char *url);
 
 void win_newline(ProfWin* window);
 void win_redraw(ProfWin* window);