aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2005-12-16 10:47:44 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2005-12-16 10:47:44 +0100
commitc4168f4cfe553d111941ee385a94facb5449652d (patch)
treeab1c97d2fb2d70faa8602246453334065796ea6f
parent15832cc6c8475ae454a72a2a12f231fef852e886 (diff)
Yay for useless optimizations!
-rw-r--r--storage_text.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/storage_text.c b/storage_text.c
index 95a107be..1bf2dcf3 100644
--- a/storage_text.c
+++ b/storage_text.c
@@ -33,9 +33,7 @@
static struct prpl *find_protocol_by_id(int id)
{
switch (id) {
- case 0: return find_protocol("oscar");
- case 1: return find_protocol("oscar");
- case 3: return find_protocol("oscar");
+ case 0: case 1: case 3: return find_protocol("oscar");
case 4: return find_protocol("msn");
case 2: return find_protocol("yahoo");
case 8: return find_protocol("jabber");