string msg = txt;
msg += '\n';
msg += throwable.getFormattedMessage();
- if (!std::strlen(throwable.getOrigin()) != 0) {
+ if (std::strlen(throwable.getOrigin()) != 0) {
msg += "\n (reported by ";
msg += throwable.getOrigin();
msg += ')';
#define MAX_PACKET_SIZE 1200
#define MAX_TEXT_SIZE 128
-// These constants are provided so that the ident
-// command can list file versions
-const char sMULTIPLAYMGR_BID[] = "$Id$";
-const char sMULTIPLAYMGR_HID[] = MULTIPLAYTXMGR_HID;
-
struct IdPropertyList {
unsigned id;
const char* name;