The U.S. Trustee's Office's Objections to Sealing the AutoZone Agreement

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News The U.S. Trustee's Office's Objections to Sealing the AutoZone Agreement
# 1  
Old 12-04-2009
The U.S. Trustee's Office's Objections to Sealing the AutoZone Agreement

This is interesting. We get to learn now what it was the U.S. Trustee's Office's representative, Joseph McMahon, was fighting for when he objected to the complete sealing of the AutoZone-SCO settlement agreement. He objected to the parties being allowed to block all public access to any discussion about it at hearings, and he objected to them being able to redact all transcripts of any discussions about the settlement. The settlement agreement itself remains sealed.
Remember at the last SCO bankruptcy hearing, the one mostly about Wayne Gray, it ended with the AutoZone sealing conflict unresolved when time ran out, and Cahn's lawyer Bonnie Glantz Fatell said she'd continue to discuss the issue with Mr. McMahon and file the agreement under seal and the judge could sign it on certification of counsel? She has now filed the Certification of Counsel, and attached as Exhibit 2 there's a red-lined version of their compromise order, showing the changes he fought for.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Finger command not showing Office, Office Phone from /etc/passwd

Not sure if this is the best place to post, but at this point my question seems to be an advanced topic. I'm curious why it is that the "office phone" column of finger does not seem to report anything even when data is entered in the GECOS field of /etc/passwd. I am using Ubuntu 8.10, kernel... (1 Reply)
Discussion started by: gratuitous_arp
1 Replies
Login or Register to Ask a Question
CGERC(l)							   BLAS routine 							  CGERC(l)

NAME
CGERC - perform the rank 1 operation A := alpha*x*conjg( y' ) + A, SYNOPSIS
SUBROUTINE CGERC ( M, N, ALPHA, X, INCX, Y, INCY, A, LDA ) COMPLEX ALPHA INTEGER INCX, INCY, LDA, M, N COMPLEX A( LDA, * ), X( * ), Y( * ) PURPOSE
CGERC performs the rank 1 operation where alpha is a scalar, x is an m element vector, y is an n element vector and A is an m by n matrix. PARAMETERS
M - INTEGER. On entry, M specifies the number of rows of the matrix A. M must be at least zero. Unchanged on exit. N - INTEGER. On entry, N specifies the number of columns of the matrix A. N must be at least zero. Unchanged on exit. ALPHA - COMPLEX . On entry, ALPHA specifies the scalar alpha. Unchanged on exit. X - COMPLEX array of dimension at least ( 1 + ( m - 1 )*abs( INCX ) ). Before entry, the incremented array X must contain the m element vector x. Unchanged on exit. INCX - INTEGER. On entry, INCX specifies the increment for the elements of X. INCX must not be zero. Unchanged on exit. Y - COMPLEX array of dimension at least ( 1 + ( n - 1 )*abs( INCY ) ). Before entry, the incremented array Y must contain the n element vector y. Unchanged on exit. INCY - INTEGER. On entry, INCY specifies the increment for the elements of Y. INCY must not be zero. Unchanged on exit. A - COMPLEX array of DIMENSION ( LDA, n ). Before entry, the leading m by n part of the array A must contain the matrix of coefficients. On exit, A is overwritten by the updated matrix. LDA - INTEGER. On entry, LDA specifies the first dimension of A as declared in the calling (sub) program. LDA must be at least max( 1, m ). Unchanged on exit. Level 2 Blas routine. -- Written on 22-October-1986. Jack Dongarra, Argonne National Lab. Jeremy Du Croz, Nag Central Office. Sven Hammarling, Nag Cen- tral Office. Richard Hanson, Sandia National Labs. BLAS routine 16 October 1992 CGERC(l)