~ubuntu-branches/ubuntu/lucid/curl/lucid-security

« back to all changes in this revision

Viewing changes to debian/libcurl3-gssapi.preinst

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2005-12-12 15:04:52 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20051212150452-2ymlra67b2p7kjyy
Tags: 7.15.1-1ubuntu1
Resynchronise with Debian to get URL parser overflow fix from 7.15.1
(CVE-2005-4077).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh -e
2
 
 
3
 
pkg=libcurl3-gssapi
4
 
libname=/usr/lib/libcurl.so.3
5
 
suffix=diverted
6
 
 
7
 
if [ "$1" = "install" -o "$1" = "upgrade" ]; then
8
 
        dpkg-divert --package $pkg --rename --add --divert ${libname}.${suffix} ${libname}
9
 
fi
10
 
 
11
 
#DEBHELPER#
12
 
 
13
 
exit 0