Index: netlist_act.c =================================================================== --- netlist_act.c (revision 30980) +++ netlist_act.c (revision 30981) @@ -372,7 +372,7 @@ if (a1 == NULL) RND_ACT_FAIL(Netlist); if (a2 == NULL) { - a2 = a2free = pcb_hid_prompt_for(RND_ACT_HIDLIB, "New name of the network", NULL, "net rename"); + a2 = a2free = rnd_hid_prompt_for(RND_ACT_HIDLIB, "New name of the network", NULL, "net rename"); if (a2 == NULL) { RND_ACT_IRES(1); return 0; @@ -385,7 +385,7 @@ if (a1 == NULL) RND_ACT_FAIL(Netlist); if (a2 == NULL) { - a2 = a2free = pcb_hid_prompt_for(RND_ACT_HIDLIB, "Network name to merge into", NULL, "net merge"); + a2 = a2free = rnd_hid_prompt_for(RND_ACT_HIDLIB, "Network name to merge into", NULL, "net merge"); if (a2 == NULL) { RND_ACT_IRES(1); return 0; @@ -584,7 +584,7 @@ } if (netname == NULL) { - free_netname = netname = pcb_hid_prompt_for(RND_ACT_HIDLIB, "Name of the new network", NULL, "net name"); + free_netname = netname = rnd_hid_prompt_for(RND_ACT_HIDLIB, "Name of the new network", NULL, "net name"); if (netname == NULL) { vtp0_uninit(&termlist); RND_ACT_IRES(1);