diff options
Diffstat (limited to 'net-p2p/opendchub/files/opendchub-0.8.2-telnet.patch')
-rw-r--r-- | net-p2p/opendchub/files/opendchub-0.8.2-telnet.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net-p2p/opendchub/files/opendchub-0.8.2-telnet.patch b/net-p2p/opendchub/files/opendchub-0.8.2-telnet.patch new file mode 100644 index 000000000000..f81bf44cbc69 --- /dev/null +++ b/net-p2p/opendchub/files/opendchub-0.8.2-telnet.patch @@ -0,0 +1,11 @@ +--- opendchub-0.8.2/src/main.c.orig ++++ opendchub-0.8.2/src/main.c +@@ -1073,7 +1073,7 @@ + /* The chat command, starts with <nick> */ + else if(*temp == '<') + { +- if((user->type & (SCRIPT | UNKEYED | LINKED | NON_LOGGED)) == 0) ++ if((user->type & (SCRIPT | UNKEYED | LINKED | NON_LOGGED | NON_LOGGED_ADM)) == 0) + chat(temp, user); + } + |