On Wed, Jan 07, 2004 at 11:59:20AM -0800, Greg KH wrote: > More nitpicks: > > > +int seclvl_sanity( int reqlvl ) > > Should be: > > +int seclvl_sanity(int reqlvl) > > and: > > + if( ( reqlvl < -1 ) || ( reqlvl > 2 ) ) { > > + seclvl_printk( 1, KERN_WARNING, "Attempt to set seclvl out of " > > + "range: [%d]\n", reqlvl ); > > Should be: > > + if ((reqlvl < -1) || (reqlvl > 2)) { > > + seclvl_printk(1, KERN_WARNING, "Attempt to set seclvl out of " > > + "range: [%d]\n", reqlvl); > > (same spacing changes throughout the whole file.) Done (via Lindent script). .___________________________________________________________________. Michael A. Halcrow Security Software Engineer, IBM Linux Technology Center GnuPG Fingerprint: 05B5 08A8 713A 64C1 D35D 2371 2D3C FDDA 3EB6 601D
This archive was generated by hypermail 2b30 : Thu Jan 08 2004 - 10:28:04 PST