mirror of
git://slackware.nl/current.git
synced 2025-01-30 08:38:10 +01:00
5a12e7c134
Wed Aug 26 10:00:38 CDT 2009 Slackware 13.0 x86_64 is released as stable! Thanks to everyone who helped make this release possible -- see the RELEASE_NOTES for the credits. The ISOs are off to the replicator. This time it will be a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. We're taking pre-orders now at store.slackware.com. Please consider picking up a copy to help support the project. Once again, thanks to the entire Slackware community for all the help testing and fixing things and offering suggestions during this development cycle. As always, have fun and enjoy! -P.
25 lines
1.5 KiB
Diff
25 lines
1.5 KiB
Diff
--- ./ps/parser.c.orig 2004-08-09 17:41:10.000000000 -0700
|
|
+++ ./ps/parser.c 2004-08-16 18:30:09.000000000 -0700
|
|
@@ -1213,12 +1213,20 @@
|
|
// about "ps -aux" suddenly changing behavior if a user "x" were
|
|
// added to the system.
|
|
//
|
|
+ // Yes, this is still getting patched out here. IMO, people can change
|
|
+ // old habits if and when user 'x' comes along. I still find this warning
|
|
+ // to be a POLA violation. No offense... that's the beauty of open source.
|
|
+ // You've got your ideas about this, and I have mine, and we're allowed
|
|
+ // to disagree. Nothing in the UNIX or POSIX standards requires this (annoying)
|
|
+ // warning to be displayed, and we're not changing the actual behavior
|
|
+ // of ps in any way. I know of no other 'ps' that produces this message.
|
|
+ //
|
|
// Also, a "-x" option is coming. It's already there in fact,
|
|
// for some non-default personalities. So "ps -ax" will parse
|
|
// as SysV options... and you're screwed if you've been patching
|
|
// out the friendly warning. Cut-over is likely to be in 2005.
|
|
- if(!(personality & PER_FORCE_BSD))
|
|
- fprintf(stderr, "Warning: bad ps syntax, perhaps a bogus '-'? See http://procps.sf.net/faq.html\n");
|
|
+ // if(!(personality & PER_FORCE_BSD))
|
|
+ // fprintf(stderr, "Warning: bad ps syntax, perhaps a bogus '-'? See http://procps.sf.net/faq.html\n");
|
|
// Remember: contact albert@users.sf.net or procps-feedback@lists.sf.net
|
|
// if you should feel tempted. Be damn sure you understand all
|
|
// the issues. The same goes for other stuff too, BTW. Please ask.
|