bonjour j'ai cette erreur lors de la verification d'un fichier docbook avec
xmllint --valid --noout phrack65_max.xml
Entity 'packet.packet.nmb' not defined
voici le passage incriminé
<screen> <para>
/* Check if we are sending to or from ourselves. */ if( ismyip(orig_packet->ip) && (orig_packet->port == global_nmb_port) ) loopback_this_packet = True; la ligne d'erreur: nmb = &packet.packet.nmb; .. --------------------------------------------- </screen> <para>
merci pour votre aide
Afficher les réponses par date
deny a écrit :
bonjour j'ai cette erreur lors de la verification d'un fichier docbook avec
xmllint --valid --noout phrack65_max.xml
Entity 'packet.packet.nmb' not defined
voici le passage incriminé
<screen> <para>
/* Check if we are sending to or from ourselves. */ if( ismyip(orig_packet->ip) && (orig_packet->port == global_nmb_port) ) loopback_this_packet = True; la ligne d'erreur: nmb = &packet.packet.nmb; ..
</screen> <para>
merci pour votre aide
j'ai resolu le probleme en rajoutant ceci
<screen> <![CDATA[
volia
Le Sat, 24 May 2008 07:44:40 +0200, deny deny@monaco.net a écrit :
j'ai resolu le probleme en rajoutant ceci
<screen> <![CDATA[
Tu peux aussi changer &packet.packet.nmb; en &packet.packet.nmb;. De mon point de vue c'est plus propre et plus universel (parce que tu peux pas toujours coller un CDATA).
Isa