Bug #2123 <https://bugs.freedesktop.org/show_bug.cgi?id=2123> Attachment
#1587 <https://bugs.freedesktop.org/attachment.cgi?id=1587> Call to uname should not check for return == 0, but for >= 0 instead
This commit is contained in:
parent
fa0677ab43
commit
3035739e5b
|
@ -1765,7 +1765,11 @@ xf86PrintBanner()
|
|||
{
|
||||
struct utsname name;
|
||||
|
||||
if (uname(&name) == 0) {
|
||||
/* Linux & BSD state that 0 is success, SysV (including Solaris, HP-UX,
|
||||
and Irix) and Single Unix Spec 3 just say that non-negative is success.
|
||||
All agree that failure is represented by a negative number.
|
||||
*/
|
||||
if (uname(&name) >= 0) {
|
||||
ErrorF("Current Operating System: %s %s %s %s %s\n",
|
||||
name.sysname, name.nodename, name.release, name.version, name.machine);
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
/* $XFree86: xc/programs/Xserver/hw/xfree86/os-support/bus/Sbus.c,v 1.3 2003/06/10 20:48:01 tsi Exp $ */
|
||||
/* $XFree86: xc/programs/Xserver/hw/xfree86/os-support/bus/Sbus.c,v 1.2tsi Exp $ */
|
||||
|
||||
#include <fcntl.h>
|
||||
#include <stdio.h>
|
||||
|
@ -166,10 +166,12 @@ promIsP1275(void)
|
|||
#elif defined(sun)
|
||||
struct utsname buffer;
|
||||
|
||||
if ((uname(&buffer) == 0) && !strcmp(buffer.machine, "sun4u"))
|
||||
if ((uname(&buffer) >= 0) && !strcmp(buffer.machine, "sun4u"))
|
||||
promP1275 = TRUE;
|
||||
else
|
||||
promP1275 = FALSE;
|
||||
#elif defined(__FreeBSD__)
|
||||
promP1275 = TRUE;
|
||||
#else
|
||||
#error Missing promIsP1275() function for this OS
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue