Changeset 3565


Ignore:
Timestamp:
Oct 26, 2007, 12:57:29 AM (15 years ago)
Author:
joshe
Message:

Fix misnumbered IPC constants.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libtransmission/ipcparse.h

    r3426 r3565  
    8080};
    8181
     82/* If you add or delete a constant here then you need to renumber the
     83   ones after it. They need to be in ascending order starting at zero,
     84   with no gaps. */
    8285#define IPC_INF_COMMENT         ( 1 << 0 )
    8386#define IPC_INF_CREATOR         ( 1 << 1 )
     
    8992#define IPC_INF_PATH            ( 1 << 7 )
    9093#define IPC_INF_PRIVATE         ( 1 << 8 )
    91 #define IPC_INF_SIZE            ( 1 << 10 )
    92 #define IPC_INF_TRACKERS        ( 1 << 11 )
    93 #define IPC_INF__MAX            ( 1 << 12 )
     94#define IPC_INF_SIZE            ( 1 << 9 )
     95#define IPC_INF_TRACKERS        ( 1 << 10 )
     96#define IPC_INF__MAX            ( 1 << 11 )
    9497
     98/* Ditto for these */
    9599#define IPC_ST_COMPLETED        ( 1 << 0 )
    96100#define IPC_ST_DOWNSPEED        ( 1 << 1 )
Note: See TracChangeset for help on using the changeset viewer.