Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > b0a85da781fe9662620675d20bcf04d0 > files > 59

liblcrzo4-devel-4.17.0-13mdv2010.0.i586.rpm


If you find errors, thanks for contacting me.

For every bug report, try to indicate :
 - lcrzo/lcrzoex/RzoBox version
 - libpcap/winpcap version
 - result of the command : lcrzoex 1
 - result of the command : lcrzoex 157
 - result of the command : lcrzoex 278
 - system (uname -a under unix)
 - command or error environment
 - how to reproduce the error
 - the patch, if you wrote one
 - other information you may think useful

As of September 2002, my email addresses are :
  laurent.constantin@aql.fr
  laurentconstantin@free.fr
My current email address is on the web :
  http://www.laurentconstantin.com/     (main server)
  http://go.to/laurentconstantin/       (backup server)
  http://laurentconstantin.est-la.com/  (backup server)

How to create a patch (Unix only) ?
- Solution 1 : 
   One file was modified : compare the modified file with the
   original file :
     diff -ub file.c.original file.c > /tmp/file.c.patch
- Solution 2 :
   Several files were modified : compare the modified directory with the
   original directory :
     diff -urbaN lcrzo-4.xx-src lcrzo-4.xx-src.modified > /tmp/dir.patch
- Suggestion :
   If you haven't done the changes, use preferably this method :
     cd ../..
     cp -R lcrzo-4.xx-src lcrzo-4.xx-src.modified
     cd lcrzo-4.xx-src.modified
     [do your modifications, compilations, tests, etc.]
     cd ..
     diff -urbaN lcrzo-4.xx-src lcrzo-4.xx-src.modified > /tmp/dir.patch

Then, I'll apply the patch with :
  patch -Nbp1 < file.c.patch 
  patch -Nbp0 < dir.patch