Displaying 2 results from an estimated 2 matches for "find_protocols".
Did you mean:
find_protocol
2008 Sep 10
2
Bug#490409: xen-3: diff for NMU version 3.2.1-2.1
tags 490409 + patch
thanks
Hi,
The following is the diff for my xen-3 3.2.1-2.1 NMU.
It incorporates three patches from upstream and aims to
fix CVE-2008-2004 aka #490409.
It is not yet tested much, I would appreciate if interested
parties could give it a try.
I'll upload in due course.
Kind regards
T.
diff -u xen-3-3.2.1/debian/control.md5sum xen-3-3.2.1/debian/control.md5sum
---
2008 Dec 09
3
Problems with getting correct id from query involving two tables
I have a query that is intended to find all "transfers" based on a
condition the uses a second table. In the controller, it looks like
this:
def find_protocols
@transfers = Transfer.find(:all, :from => "transfers,
protocols", :conditions => "transfers.protocol_id = protocols.id AND
protocols.name = \"#{params[:protocol]}\"")
respond_to do |format|
format.html # index.html.erb
format.xml { render :xm...