search for: logtype

Displaying 3 results from an estimated 3 matches for "logtype".

Did you mean: log_type
2004 Jul 15
3
slight simplification to firewall log_rule_limit code
...er almost identical case without) down to this slightly shorter version with no duplication (excerpt): if [ -n "$LOGRULENUMBERS" ]; then eval rulenum=\$${chain}_logrules [ -z "$rulenum" ] && rulenum=1 fi case $level in ULOG) log=ulog LOGTYPE=ULOG loglevel= ;; *) log=log LOGTYPE=LOG loglevel="--log-level $level" ;; esac eval iptables -A $chain $@ $limit -j $LOGTYPE $LOGPARMS \ $loglevel \ --${log}-prefix ''"$(Logprintf "$LOGFORMAT" $chain $rulenum $disposition)"'...
2020 Mar 19
0
smbclient(samba-4.10.4) cannot log data in log.smbclient while samba-3.6.23 can
...n these versions would be tough as, > versions are far apart. > > Even there is significant change log handling between two versions. I > tried adding the old code back but still no luck. > > samba-4.10.4/lib/util/debug.c > void setup_logging(const char *prog_name, enum debug_logtype new_logtype) > > { > ??????? debug_init(); > ??????? if (state.logtype < new_logtype) { > ??????????????? state.logtype = new_logtype; > ??????? } > ??????? if (prog_name) { > ??????????????? const char *p = strrchr(prog_name, '/'); > > ??????????????? if (p...
2007 Jul 05
2
undefined method `original_filename' for "random.jpg":String
...9;'list'' redirect_to :controller => ''log'', :action => ''show'', :id => @journal.log_id else render :action => ''new'' end end ... controllers/log_controller.rb: ... def new @log = Log.new @logtypes = Type.find(:all).collect { |l| [l.name, l.id] } @systems = System.find(:all).collect { |s| [s.name, s.id] } @subsystems = Subsystem.find(:all).collect { |s| [s.name, s.id] } @clients = Client.find(:all).collect { |c| [c.name, c.id] } @companies = Company.find(:all).collect { |c| [...