? ../ircu2.10.06/patch.dbh13 ? ../ircu2.10.06/patch.xmode2 ? ../ircu2.10.06/patch.dbh14 Index: ../ircu2.10.06/CAMBIOS =================================================================== RCS file: /cvsroot/ircd/CAMBIOS,v retrieving revision 1.20 retrieving revision 1.21 diff -c -r1.20 -r1.21 *** ../ircu2.10.06/CAMBIOS 1999/10/13 22:42:15 1.20 --- ../ircu2.10.06/CAMBIOS 1999/10/13 23:29:46 1.21 *************** *** 1,3 **** --- 1,8 ---- + * 1999/10/14 savage@apostols.org (patch.dbh14) FIX + ----------------------------------------------------------------------- + He modificado la respuesta al /STATS B, para hacerla mas corta y le he + añadido el soporte de las nuevas BDD. + * 1999/10/13 savage@apostols.org (patch.xmode2) FIX ----------------------------------------------------------------------- Arreglado un pekeño bug cosmetico, que ocurria cuando mediante XMODE Index: ../ircu2.10.06/ircd/opercmds.c =================================================================== RCS file: /cvsroot/ircd/ircd/opercmds.c,v retrieving revision 1.6 retrieving revision 1.7 diff -c -r1.6 -r1.7 *** ../ircu2.10.06/ircd/opercmds.c 1999/10/08 11:09:09 1.6 --- ../ircu2.10.06/ircd/opercmds.c 1999/10/13 23:29:46 1.7 *************** *** 653,674 **** for(i=DBH_PRIMERA_TABLA;i<=DBH_ULTIMA_TABLA;i++) { if(tabla_serie[i]) if(tabla_residente[i]) ! sendto_one(sptr, ":%s %d %s B %s Tabla '%c' V=%lu S=%lu R=%lu", ! me.name, RPL_STATSDEBUG, parv[0], me.name, i, tabla_version[i], tabla_serie[i], tabla_cuantos[i]); else ! sendto_one(sptr, ":%s %d %s B %s Tabla '%c' V=%lu S=%lu NoResidente", ! me.name, RPL_STATSDEBUG, parv[0], me.name, i, tabla_version[i], tabla_serie[i] ); } #endif /* DB_HISPANO */ #ifdef DB_ESNET ! sendto_one(sptr, ":%s %d %s B %s Tabla '%c' DB_ESNET S=%lu R=%lu", ! me.name, RPL_STATSDEBUG, parv[0], me.name, ! ESNET_NICKDB, ! tabla_serie[ESNET_NICKDB], ! tabla_cuantos[ESNET_NICKDB]); #endif break; #endif --- 653,680 ---- for(i=DBH_PRIMERA_TABLA;i<=DBH_ULTIMA_TABLA;i++) { if(tabla_serie[i]) if(tabla_residente[i]) ! sendto_one(sptr, ":%s %d %s %c Tabla '%c' :V=%lu S=%lu R=%lu", ! me.name, RPL_STATSDEBUG, parv[0], stat, i, tabla_version[i], tabla_serie[i], tabla_cuantos[i]); else ! sendto_one(sptr, ":%s %d %s %c Tabla '%c' :V=%lu S=%lu NoResidente", ! me.name, RPL_STATSDEBUG, parv[0], stat, i, tabla_version[i], tabla_serie[i] ); } #endif /* DB_HISPANO */ #ifdef DB_ESNET ! for(i=ESNET_BDD;i<=ESNET_BDD_END;i++) { ! if(tabla_serie[i]) ! if(tabla_residente[i]) ! sendto_one(sptr, ":%s %d %s %c Tabla '%c' :S=%lu R=%lu", ! me.name, RPL_STATSDEBUG, parv[0], stat, ! i, tabla_serie[i], tabla_cuantos[i]); ! else ! sendto_one(sptr, ":%s %d %s %c Tabla '%c' :S=%lu NoResidente", ! me.name, RPL_STATSDEBUG, parv[0], stat, ! i, tabla_serie[i] ); ! } #endif break; #endif Index: ../ircu2.10.06/ircd/s_debug.c =================================================================== RCS file: /cvsroot/ircd/ircd/s_debug.c,v retrieving revision 1.51 retrieving revision 1.52 diff -c -r1.51 -r1.52 *** ../ircu2.10.06/ircd/s_debug.c 1999/10/13 22:38:07 1.51 --- ../ircu2.10.06/ircd/s_debug.c 1999/10/13 23:29:46 1.52 *************** *** 206,212 **** #ifdef DB_HISPANO '.','I','R','C','-', 'H','I','S','P','A','N','O','.','O','R','G',':', ! 'D','B','H' ,'1','3','+', 'N','+', --- 206,212 ---- #ifdef DB_HISPANO '.','I','R','C','-', 'H','I','S','P','A','N','O','.','O','R','G',':', ! 'D','B','H' ,'1','4','+', 'N','+',