comparison client.c @ 254:3692c9324977

applied Sander's patch as well
author Anselm R.Garbe <arg@10ksloc.org>
date Fri, 11 Aug 2006 10:05:53 +0200
parents 5c72602fe587
children d6fd632d861c
comparison
equal deleted inserted replaced
253:7a11e4312b17 254:3692c9324977
465 else 465 else
466 return; 466 return;
467 } 467 }
468 468
469 /* pop */ 469 /* pop */
470 if(sel->prev) 470 sel->prev->next = sel->next;
471 sel->prev->next = sel->next;
472 if(sel->next) 471 if(sel->next)
473 sel->next->prev = sel->prev; 472 sel->next->prev = sel->prev;
474 sel->prev = NULL; 473 sel->prev = NULL;
475 clients->prev = sel; 474 clients->prev = sel;
476 sel->next = clients; 475 sel->next = clients;