repo: ngircd
action: commit
revision: 
path_from: 
revision_from: c26ca7773bfc92ca41344a0994bee45ec917b261:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit c26ca7773bfc92ca41344a0994bee45ec917b261
Author: Alexander Barton 
Date:   Fri Apr 29 12:11:01 2011 +0200

    Only require server prefixes on non RFC1459 links

    Not all servers (and services!) using the RFC1459 protocol style send
    prefixes on all commands; so don't require them to do so.

    This relaxes the requirements introduced by commit 15775e679.

diff --git a/src/ngircd/parse.c b/src/ngircd/parse.c
index 8f5e6019694a53807d023b4df9010c281ad10d0b..
index ..d7dbffc28f951465bfc6f300173e390aa9c0b131 100644
--- a/src/ngircd/parse.c
+++ b/src/ngircd/parse.c
@@ -280,6 +280,7 @@ Validate_Prefix( CONN_ID Idx, REQUEST *Req, bool *Closed )
 	assert( client != NULL );

 	if (!Req->prefix && Client_Type(client) == CLIENT_SERVER
+	    && !Conn_Options(Idx) & CONN_RFC1459
 	    && strcasecmp(Req->command, "ERROR") != 0
 	    && strcasecmp(Req->command, "PING") != 0)
 	{

-----END OF PAGE-----