summaryrefslogtreecommitdiff
path: root/sysutils/mkisofs-devel/files/patch-ac
diff options
context:
space:
mode:
authorJoerg Wunsch <joerg@FreeBSD.org>1997-10-22 06:13:44 +0000
committerJoerg Wunsch <joerg@FreeBSD.org>1997-10-22 06:13:44 +0000
commitc38fb7c7a2c2c5878294edaff40ea38d4aabb482 (patch)
tree91a172125de484cc655e9d69113bf0f4e914a1e8 /sysutils/mkisofs-devel/files/patch-ac
parentSeems this thing wants the xpm port to be installed first. (diff)
Upgrade to version 1.11.1, also fix an ininitialized variable bug in
the multisession stuff. Too bad, but i've missed the 2.2.5 deadline with this by a few hours.
Notes
Notes: svn path=/head/; revision=8322
Diffstat (limited to 'sysutils/mkisofs-devel/files/patch-ac')
-rw-r--r--sysutils/mkisofs-devel/files/patch-ac5
1 files changed, 3 insertions, 2 deletions
diff --git a/sysutils/mkisofs-devel/files/patch-ac b/sysutils/mkisofs-devel/files/patch-ac
index fe9584601618..b0ca127e41a8 100644
--- a/sysutils/mkisofs-devel/files/patch-ac
+++ b/sysutils/mkisofs-devel/files/patch-ac
@@ -22,9 +22,10 @@
+ memcpy (copy, name, strlen(name) + 1);
+ pnt = copy;
+ last_dot = strrchr (pnt,'.');
- *last_dot = '\0';
+ c = last_dot;
+ *c = '\0';
last_dot = strrchr (pnt,'.');
-- *last_dot = '.';
+- *c = '.';
}
while(*pnt)