Ca fait une semaine que je suis passé a samba 3 sur la sid, et grande fut ma peine quand j'ai vu que linNeighbourhood ne marchait plus :-(
apperement c'est plus trop les même options dans nmblookup. j'ai fait un petit patch pour nmblookup:
#include <stdio.h>
#include <string.h>
#define REALBIN "/usr/bin/nmblookup.real"
int main(int argc,char **argv)
{
if(argc>2 && strcmp(argv[1],"-M")==0 && strcmp(argv[2],"-")==0)
execl(REALBIN,REALBIN,"-M","--","-",NULL);
else
execv(REALBIN,argv);
}
mais bon, ça marche le premier nmblookup, passe, il voit rien ensuite..
avec xffm ça
(…)