comparison src/server.c @ 680:acdbee5a9492

[gaim-migrate @ 690] i'm an idiot committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 15 Aug 2000 02:46:18 +0000
parents 71b2477033cb
children b29c92be568b
comparison
equal deleted inserted replaced
679:71b2477033cb 680:acdbee5a9492
467 case DENY_SOME: 467 case DENY_SOME:
468 /* DENY <deny> */ 468 /* DENY <deny> */
469 /* if deny is empty this is the same as PERMIT_ALL */ 469 /* if deny is empty this is the same as PERMIT_ALL */
470 if (deny) { 470 if (deny) {
471 at = 0; 471 at = 0;
472 list = permit; 472 list = deny;
473 while (list) { 473 while (list) {
474 at += g_snprintf(&buf[at], sizeof(buf) - at, "%s", list->data); 474 at += g_snprintf(&buf[at], sizeof(buf) - at, "%s", list->data);
475 list = list->next; 475 list = list->next;
476 if (list) 476 if (list)
477 at += g_snprintf(&buf[at], sizeof(buf) - at, "&"); 477 at += g_snprintf(&buf[at], sizeof(buf) - at, "&");