~dannf/ubuntu/saucy/screen/lp1213278-from-debian

« back to all changes in this revision

Viewing changes to misc.c

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2007-10-23 17:36:30 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20071023173630-6q4agogsxuzujhwd
Tags: 4.0.3-7ubuntu1
* Merge with Debian; remaining Ubuntu changes:
  - 07_norootpassword.dpatch: When locking a root-owned screen, check that
    root has a password set. If not, ask for an unlocking key. (LP#6760)
  - debian/preinst: Remove obsolete init script 'screen' on
    upgrades. The script is called 'screen-cleanup' in Debian and thus
    should be called the same in Ubuntu to avoid a permanent and pointless
    delta. This needs to be kept until after the next LTS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
613
613
   */
614
614
# endif /* NEEDSETENV */
615
615
#else /* USESETENV */
616
 
# if defined(__GLIBC__) || defined(__convex__) || (BSD >= 199103)
 
616
# if defined(linux) || defined(__convex__) || (BSD >= 199103)
617
617
  setenv(var, value, 1);
618
618
# else
619
619
  setenv(var, value);
620
 
# endif /* __GLIBC__ || convex || BSD >= 199103 */
 
620
# endif /* linux || convex || BSD >= 199103 */
621
621
#endif /* USESETENV */
622
622
}
623
623