view debian/gftp-text.prerm @ 970:4c7a58ef26c1

2008-11-30 Brian Masney <masneyb@gftp.org> * src/gtk/delete_dialog.c - fixed call to g_strdup_printf() where too many arguments were passed in format string. * lib/sslcommon.c - removed duplicate data variable * src/uicommon/gftpui.c (gftpui_common_cmd_help) - fixed call to strncat() where the supplied length was too long
author masneyb
date Sun, 30 Nov 2008 17:55:04 +0000
parents 44a018ea578c
children
line wrap: on
line source

#!/bin/sh
# prerm script for gftp-text

set -e

case "$1" in
        remove|deconfigure)
                update-alternatives --remove ftp /usr/bin/gftp-text
        ;;
        failed-upgrade|upgrade)
        ;;
        *)
                echo "prerm called with unknown argument \`$1'" >&2
                exit 1
        ;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0