diff options
Diffstat (limited to 'src/common/url.c')
-rw-r--r-- | src/common/url.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/url.c b/src/common/url.c index f722ca34..618a4a71 100644 --- a/src/common/url.c +++ b/src/common/url.c @@ -64,9 +64,9 @@ url_save_tree (const char *fname, const char *mode, gboolean fullpath) FILE *fd; if (fullpath) - fd = xchat_fopen_file (fname, mode, XOF_FULLPATH); + fd = hexchat_fopen_file (fname, mode, XOF_FULLPATH); else - fd = xchat_fopen_file (fname, mode, 0); + fd = hexchat_fopen_file (fname, mode, 0); if (fd == NULL) return; @@ -80,7 +80,7 @@ url_save_node (char* url) FILE *fd; /* open <config>/url.log in append mode */ - fd = xchat_fopen_file ("url.log", "a", 0); + fd = hexchat_fopen_file ("url.log", "a", 0); if (fd == NULL) { return; @@ -156,7 +156,7 @@ url_add (char *urltext, int len) if (prefs.hex_url_grabber_limit > 0 && size >= prefs.hex_url_grabber_limit) { /* the loop is necessary to handle having the limit lowered while - xchat is running */ + HexChat is running */ size -= prefs.hex_url_grabber_limit; for(; size > 0; size--) { |