On Mon, 2005-11-07 at 15:42 +0100, Boris Fischer wrote: 
>  can anybody tell me how to apply the patch???

In general, there is a command called "patch" which can
be used to apply patches to source code.
But in this particular example, the patch referred
to is simply:

--- netdisco    5 Jan 2005 22:36:55 -0000       1.81
+++ netdisco    18 Jan 2005 01:45:02 -0000
@@ -104,7 +104,7 @@
$netdisco::SQLCARP = $args{S} || 0;
$BatchMode         = $args{b} || 0;
$New_Only          = $args{N} || 0;
-$Log               = (!$BatchMode and ($DEBUG or defined $args{L})) ?
0 : 1;
+$Log               = $BatchMode && !defined $args{L};

# Allow the -h or -v commands to run no matter what
defined $args{h} and &usage; 



So all you have to do is look in the file 'netdisco'
for the line starting $Log, and replace the existing version
(which should look like the line starting with '-')
with the version starting with '+'


That's easy enough to do with a text editor.

Dave


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
Net-snmp-users mailing list
Net-snmp-users@lists.sourceforge.net
Please see the following page to unsubscribe or change other options:
https://lists.sourceforge.net/lists/listinfo/net-snmp-users

Reply via email to