27 lines
773 B
Diff
27 lines
773 B
Diff
|
|
From 21daa24e7214ed4e6505c7068412545b5ac47ff3 Mon Sep 17 00:00:00 2001
|
||
|
|
From: =?UTF-8?q?Tim=20R=C3=BChsen?= <tim.ruehsen@gmx.de>
|
||
|
|
Date: Fri, 26 Oct 2018 22:52:41 +0200
|
||
|
|
Subject: [PATCH 35/83] * src/convert.c (convert_links): Fix fallthrough
|
||
|
|
|
||
|
|
---
|
||
|
|
src/convert.c | 2 +-
|
||
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
|
||
|
|
diff --git a/src/convert.c b/src/convert.c
|
||
|
|
index b7f3d95c..8cacbfbc 100644
|
||
|
|
--- a/src/convert.c
|
||
|
|
+++ b/src/convert.c
|
||
|
|
@@ -322,8 +322,8 @@ convert_links (const char *file, struct urlpos *links)
|
||
|
|
xfree (newname);
|
||
|
|
xfree (quoted_newname);
|
||
|
|
++to_file_count;
|
||
|
|
- break;
|
||
|
|
}
|
||
|
|
+ break;
|
||
|
|
case CO_CONVERT_BASENAME_ONLY:
|
||
|
|
{
|
||
|
|
char *newname = convert_basename (p, link);
|
||
|
|
--
|
||
|
|
2.19.1
|
||
|
|
|