]> granicus.if.org Git - procps-ng/commitdiff
libprocps: remove linux 2.7.0 check
authorSami Kerola <kerolasa@iki.fi>
Sat, 11 Feb 2012 20:22:06 +0000 (21:22 +0100)
committerSami Kerola <kerolasa@iki.fi>
Sat, 11 Feb 2012 20:44:29 +0000 (21:44 +0100)
Checking for linux kernel version 2.7.0 is meaningless now when 3.0.0
is out.

Reported-By: Christian Hofstaedtler
Bug-Debian: http://bugs.debian.org/635553
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
proc/devname.c

index 4be24e981681d5242e8d5bf30a5891b165114d1b..fa965233380bdad3a045c528b1aa9e940f297afd 100644 (file)
@@ -282,9 +282,6 @@ unsigned dev_to_tty(char *restrict ret, unsigned chop, dev_t dev_t_dev, int pid,
   unsigned i = 0;
   int c;
   if(dev == 0u) goto no_tty;
-  if(linux_version_code > LINUX_VERSION(2, 7, 0)){  // not likely to make 2.6.xx
-    if(link_name(tmp, MAJOR_OF(dev), MINOR_OF(dev), pid, "tty"   )) goto abbrev;
-  }
   if(driver_name(tmp, MAJOR_OF(dev), MINOR_OF(dev)               )) goto abbrev;
   if(  link_name(tmp, MAJOR_OF(dev), MINOR_OF(dev), pid, "fd/2"  )) goto abbrev;
   if( guess_name(tmp, MAJOR_OF(dev), MINOR_OF(dev)               )) goto abbrev;