[X2serv-cvs] [CVS] Module x2: Change committed
Brought to you by:
sirvulcan
From: Reed L. <r3...@us...> - 2003-10-27 01:56:01
|
Committer : Reed Loden <r3...@us...> CVSROOT : /cvsroot/x2serv Module : x2 Commit time: 2003-10-27 01:52:19 UTC Modified files: source/parse.c Log message: Add support for privs and sajoin/sapart. ---------------------- diff included ---------------------- Index: x2/source/parse.c diff -u x2/source/parse.c:1.82 x2/source/parse.c:1.83 --- x2/source/parse.c:1.82 Thu Oct 23 19:50:18 2003 +++ x2/source/parse.c Sun Oct 26 17:52:08 2003 @@ -65,6 +65,8 @@ { "C", m_create, FALSE, TRUE }, { "J", m_join, FALSE, TRUE }, { "L", m_part, FALSE, TRUE }, + { "SJ", m_noop, TRUE, FALSE }, + { "SP", m_noop, TRUE, FALSE }, { "M", m_mode, TRUE, TRUE }, { "I", m_noop, TRUE, TRUE }, { "A", m_away, FALSE, TRUE }, @@ -90,6 +92,7 @@ { "R", m_noop, TRUE, TRUE }, { "SE", m_settime, TRUE, FALSE }, { "AC", m_noop, TRUE, FALSE }, /* not used in X2 */ + { "PRIVS", m_noop, TRUE, FALSE }, { "WU", m_noop, TRUE, TRUE }, { "LL", m_noop, TRUE, FALSE }, { "SH", m_noop, FALSE, TRUE }, ----------------------- End of diff ----------------------- |