diff src/server.c @ 7650:6db061321ec4

[gaim-migrate @ 8293] I completely reverted the dnd sendfile stuff. I thought most of it was pretty decent. The parts for adding the sendfile option to the conv window looked good to me. I can't comment on the dnd stuff. In oscar.c, I didn't see a need to duplicate the oscar_ask_sendfile function. I also don't think the right click->send file option should have been removed... but that's just one man's opinion. Sean, could you please talk to Chip and/or the author of this patch and work towards making it acceptable by you? committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 28 Nov 2003 19:30:45 +0000
parents 994b2d782711
children 7b8407d8c546
line wrap: on
line diff
--- a/src/server.c	Fri Nov 28 19:10:57 2003 +0000
+++ b/src/server.c	Fri Nov 28 19:30:45 2003 +0000
@@ -291,19 +291,6 @@
 	return val;
 }
 
-void serv_send_file(GaimConnection *gc, const char *name, const char *file)
-{
-	GaimPluginProtocolInfo *prpl_info = NULL;
-
-	if (gc != NULL && gc->prpl != NULL)
-		prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl);
-
-	if (prpl_info->send_file == NULL || file == NULL || name ==  NULL)
-		return;
-
-	prpl_info->send_file(gc, name, file);
-}
-
 void serv_get_info(GaimConnection *g, const char *name)
 {
 	GaimPluginProtocolInfo *prpl_info = NULL;