ssld: remove unused macros, avoid sign overflow in integer function argument

This commit is contained in:
Aaron Jones 2016-06-01 20:17:09 +00:00
parent 9a9bc518c1
commit 1187d61128
No known key found for this signature in database
GPG Key ID: 6E854C0FAAD4CEA4
1 changed files with 1 additions and 6 deletions

View File

@ -120,15 +120,10 @@ typedef struct _conn
#define SetDead(x) ((x)->flags |= FLAG_DEAD)
#define SetSSLWWantsR(x) ((x)->flags |= FLAG_SSL_W_WANTS_R)
#define SetSSLRWantsW(x) ((x)->flags |= FLAG_SSL_R_WANTS_W)
#define SetZipSSL(x) ((x)->flags |= FLAG_ZIPSSL)
#define ClearSSL(x) ((x)->flags &= ~FLAG_SSL)
#define ClearZip(x) ((x)->flags &= ~FLAG_ZIP)
#define ClearCork(x) ((x)->flags &= ~FLAG_CORK)
#define ClearDead(x) ((x)->flags &= ~FLAG_DEAD)
#define ClearSSLWWantsR(x) ((x)->flags &= ~FLAG_SSL_W_WANTS_R)
#define ClearSSLRWantsW(x) ((x)->flags &= ~FLAG_SSL_R_WANTS_W)
#define ClearZipSSL(x) ((x)->flags &= ~FLAG_ZIPSSL)
#define NO_WAIT 0x0
#define WAIT_PLAIN 0x1
@ -1224,7 +1219,7 @@ main(int argc, char **argv)
/* this is really useless... */
send_i_am_useless(mod_ctl);
/* sleep until the ircd kills us */
rb_sleep(2 << 30, 0);
rb_sleep(1 << 30, 0);
exit(1);
}