view debian/gftp-text.prerm @ 521:739afd9df73c

2004-7-27 Brian Masney <masneyb@gftp.org> * lib/rfc959.c src/gtk/misc-gtk.c src/gtk/view_dialog.c - fixed more comparsions between signed and unsigned integers * lib/sshv2.c (sshv2_buffer_get_int32) - allow an expected response value of 0. If it does not match, call sshv2_wrong_response(). SSH_FX_OK is set to 0, so this value was not being checked * src/gtk/gtkui.c src/text/textui.c src/uicommon/gftpui.h - renamed the clear_cache argument of gftpui_refresh() to clear_cache_entry. There is already a function named clear_cache()
author masneyb
date Wed, 28 Jul 2004 02:47:25 +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