diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-30 11:35:39 +0100 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-30 11:35:39 +0100 |
commit | a51a69134b8bdc94cfb4dcc1403e33cce24d34bc (patch) | |
tree | a257e588c8d13d8d275450b8903c924145e5835f /src/common/ignore.c | |
parent | 82936df2af3993c2e234042c450e0e9630b045d4 (diff) |
Nah, even more rebranding
Diffstat (limited to 'src/common/ignore.c')
-rw-r--r-- | src/common/ignore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/ignore.c b/src/common/ignore.c index b6eae41a..caeae06e 100644 --- a/src/common/ignore.c +++ b/src/common/ignore.c @@ -278,7 +278,7 @@ ignore_load () char *cfg, *my_cfg; int fh, i; - fh = xchat_open_file ("ignore.conf", O_RDONLY, 0, 0); + fh = hexchat_open_file ("ignore.conf", O_RDONLY, 0, 0); if (fh != -1) { fstat (fh, &st); @@ -313,7 +313,7 @@ ignore_save () GSList *temp = ignore_list; struct ignore *ig; - fh = xchat_open_file ("ignore.conf", O_TRUNC | O_WRONLY | O_CREAT, 0600, XOF_DOMODE); + fh = hexchat_open_file ("ignore.conf", O_TRUNC | O_WRONLY | O_CREAT, 0600, XOF_DOMODE); if (fh != -1) { while (temp) |