# HG changeset patch # User John Bailey # Date 1255323830 0 # Node ID 5f13e8a5c1a0b620b751b72e1b3078ef1a968186 # Parent 61856d0a27141caf81c0f7a2dc90fbc1f219396b Explicitly define the enum values like Paul wanted. Refs #9814. diff -r 61856d0a2714 -r 5f13e8a5c1a0 libpurple/protocols/yahoo/libymsg.h --- a/libpurple/protocols/yahoo/libymsg.h Mon Oct 12 05:01:17 2009 +0000 +++ b/libpurple/protocols/yahoo/libymsg.h Mon Oct 12 05:03:50 2009 +0000 @@ -135,10 +135,10 @@ */ typedef enum { - YAHOO_FEDERATION_NONE, - YAHOO_FEDERATION_OCS, /* LCS or OCS private networks */ - YAHOO_FEDERATION_MSN, /* MSN or Windows Live network */ - YAHOO_FEDERATION_IBM = 9 /* IBM/Sametime network */ + YAHOO_FEDERATION_NONE = 0, /* No federation - Yahoo! network */ + YAHOO_FEDERATION_OCS = 1, /* LCS or OCS private networks */ + YAHOO_FEDERATION_MSN = 2, /* MSN or Windows Live network */ + YAHOO_FEDERATION_IBM = 9 /* IBM/Sametime network */ } YahooFederation;