pkgsrc/multimedia/dvdrip/patches/patch-aa
xtraeme 88ec01cfe9 - Correctly set minimum versions.
- Fix cluster mode support... the code was using "/usr/sbin/fping".

Bump PKGREVISION.
2006-08-24 14:52:59 +00:00

15 lines
611 B
Text

$NetBSD: patch-aa,v 1.1 2006/08/24 14:52:59 xtraeme Exp $
--- lib/Video/DVDRip/Project.pm.orig 2006-08-24 16:33:33.000000000 +0200
+++ lib/Video/DVDRip/Project.pm 2006-08-24 16:33:40.000000000 +0200
@@ -373,8 +373,8 @@
my $dvd_device = $self->dvd_device;
my $dvd_mount_point
- = $self->get_mount_dir_from_mtab( $dvd_device, "/etc/mtab" )
- || $self->get_mount_dir_from_mtab( $dvd_device, "/etc/fstab" );
+ = $self->get_mount_dir_from_mtab( $dvd_device, "/etc/fstab" )
+ || $self->get_mount_dir_from_mtab( $dvd_device, "/etc/mtab" );
return $dvd_mount_point;
}