search for: queury

Displaying 2 results from an estimated 2 matches for "queury".

Did you mean: query
2004 Apr 18
0
AGI Module
...ueue. if ('foo' . $accountNumber eq 'foo') { $AGI->exec('Queue', 'unverified-patientq'); $AGI->verbose('No account number entered', 1); exit(0); } # Run query to get verification data from server. $AGI->verbose('Executing queury',3); my $sth = $dbh->prepare("select SSN, [Birth Date], Zip, [Home Phone] from SEARCHBASE where [Demo#] = $accountNumber"); $sth->execute(); if ($sth->rows == 1) { @data = $sth->fetchrow_array(); my $ssn = $data[0]; my $dob = $data[1]; my $...
2015 Oct 26
8
[Bug 2483] New: use AI_ADDRCONFIG flag for getaddrinfo() hints on Solaris
...ous Assignee: unassigned-bugs at mindrot.org Reporter: ivo.raisr at oracle.com Created attachment 2739 --> https://bugzilla.mindrot.org/attachment.cgi?id=2739&action=edit the proposed patch getaddrinfo() in several places around OpenSSH results in a name service (DNS) queury. For the detailed list, see below. On Solaris, when the address family specified in the getaddrinfo() hints is AF_UNSPEC, IPv4 and IPv6 queries are sent over the wire. This is regardless IPv4 or IPv6 interface is actually configured on the host. Now some sites configure only IPv4 interfaces on th...