/* Verifico que no existe un indice con el mismo nombre */
/* y que no exista un indice primario */
+ PERR("Agregando indice");
tmp = emu->indices;
while (tmp) {
if (strcmp(tmp->nombre, nombre)==0) {
break;
case 2:
PERR("EMUFS ya tiene indice primario!!");
- break;
- default:
- PERR("Error no esperado!!");
}
return 0;
}
/* Creo el nuevo indice */
+ PERR("Creando indice\n");
tmp = emufs_indice_crear(emu, nombre, funcion, tipo, tipo_dato, offset, tam_bloque);
if (tmp == NULL) return 0;