~ubuntu-branches/ubuntu/gutsy/vnc4/gutsy

« back to all changes in this revision

Viewing changes to unix/xc/programs/Xserver/hw/xfree86/etc/install.sv4

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2006-05-15 20:35:17 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060515203517-l4lre1ku942mn26k
Tags: 4.1.1+X4.3.0-10
* Correction of critical security issue. Thanks to Martin Kogler
  <e9925248@student.tuwien.ac.at> that informed me about the issue,
  and provided the patch.
  This flaw was originally found by Steve Wiseman of intelliadmin.com.
* Applied patch from Javier Kohen <jkohen@users.sourceforge.net> that
  inform the user that only 8 first characters of the password will
  actually be used when typing more than 8 characters, closes:
  #355619.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# $XFree86: xc/programs/Xserver/hw/xfree86/etc/install.sv4,v 3.3 1996/12/23 06:47:11 dawes Exp $
 
3
#
 
4
# Copyright 1990,91 by Thomas Roell, Dinkelscherben, Germany.
 
5
#
 
6
# Permission to use, copy, modify, distribute, and sell this software and its
 
7
# documentation for any purpose is hereby granted without fee, provided that
 
8
# the above copyright notice appear in all copies and that both that
 
9
# copyright notice and this permission notice appear in supporting
 
10
# documentation, and that the name of Thomas Roell not be used in
 
11
# advertising or publicity pertaining to distribution of the software without
 
12
# specific, written prior permission.  Thomas Roell makes no representations
 
13
# about the suitability of this software for any purpose.  It is provided
 
14
# "as is" without express or implied warranty.
 
15
#
 
16
# THOMAS ROELL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 
17
# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
 
18
# EVENT SHALL THOMAS ROELL BE LIABLE FOR ANY SPECIAL, INDIRECT OR
 
19
# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
 
20
# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
 
21
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 
22
# PERFORMANCE OF THIS SOFTWARE.
 
23
#
 
24
# Author:  Thomas Roell, roell@informatik.tu-muenchen.de
 
25
#
 
26
 
 
27
# $XConsortium: install.sv4 /main/3 1996/02/21 17:47:37 kaleb $
 
28
 
 
29
#
 
30
# install addtional termcap & terminfo entries
 
31
#
 
32
grep xterm   /etc/termcap >/dev/null || cat xterm.termcap >>/etc/termcap
 
33
grep sun-cmd /etc/termcap >/dev/null || cat sun.termcap   >>/etc/termcap
 
34
 
 
35
tic sun.terminfo 2>/dev/null
 
36
tic xterm.terminfo 2>/dev/null
 
37