telnet: use poll, it's shorter

*: style fixes
This commit is contained in:
Denis Vlasenko
2007-11-06 02:23:39 +00:00
parent cd0fbb5e77
commit 1bec1b980e
5 changed files with 79 additions and 80 deletions

View File

@ -1951,7 +1951,8 @@ static unsigned long obj_elf_hash_n(const char *name, unsigned long n)
while (n > 0) {
ch = *name++;
h = (h << 4) + ch;
if ((g = (h & 0xf0000000)) != 0) {
g = (h & 0xf0000000);
if (g != 0) {
h ^= g >> 24;
h &= ~g;
}