diff libpurple/protocols/silc/silc.c @ 23400:074be48b20e7

Use CLIENT_WEBSITE rather than PURPLE_WEBSITE in libpurple. If the build process doesn't #define CLIENT_WEBSITE, internal.h will define it as PURPLE_WEBSITE. No change for Pidgin or Finch, but this will let other clients such as Adium present their own site in error messages as needed.
author Evan Schoenberg <evan.s@dreskin.net>
date Tue, 01 Jul 2008 18:06:32 +0000
parents e0bcb8cfda74
children f1602b78aa59
line wrap: on
line diff
--- a/libpurple/protocols/silc/silc.c	Tue Jul 01 04:26:19 2008 +0000
+++ b/libpurple/protocols/silc/silc.c	Tue Jul 01 18:06:32 2008 +0000
@@ -674,7 +674,7 @@
 
 	/* Send QUIT */
 	silc_client_command_call(sg->client, sg->conn, NULL,
-				 "QUIT", "Download Pidgin: " PURPLE_WEBSITE,
+				 "QUIT", "Download " PACKAGE ": " CLIENT_WEBSITE,
 				 NULL);
 
 	if (sg->conn)
@@ -1828,7 +1828,7 @@
 		return PURPLE_CMD_RET_FAILED;
 
 	silc_client_command_call(sg->client, sg->conn, NULL,
-				 "QUIT", (args && args[0]) ? args[0] : "Download Pidgin: " PURPLE_WEBSITE, NULL);
+				 "QUIT", (args && args[0]) ? args[0] : "Download " PACKAGE ": " CLIENT_WEBSITE, NULL);
 
 	return PURPLE_CMD_RET_OK;
 }