summaryrefslogtreecommitdiff
path: root/src/irc/dcc
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc/dcc')
-rw-r--r--src/irc/dcc/dcc-send.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/irc/dcc/dcc-send.c b/src/irc/dcc/dcc-send.c
index b1f2c950..95c10fe8 100644
--- a/src/irc/dcc/dcc-send.c
+++ b/src/irc/dcc/dcc-send.c
@@ -168,8 +168,7 @@ static char *dcc_send_get_file(const char *fname)
static void cmd_dcc_send(const char *data, IRC_SERVER_REC *server,
WI_ITEM_REC *item)
{
- const char *fname;
- char *target, *str;
+ char *target, *str, *fname;
void *free_arg;
char host[MAX_IP_LEN];
int hfile, port;
@@ -228,7 +227,7 @@ static void cmd_dcc_send(const char *data, IRC_SERVER_REC *server,
cmd_param_error(CMDERR_ERRNO);
}
- fname = g_basename(fname);
+ fname = (char *) g_basename(fname);
/* Replace all the spaces with underscore so that lesser
intellgent clients can communicate.. */