Files
haikuports/dev-vcs/fossil/patches/fossil-1.36.patch
Joseph R. Prostko 2a7642c42a Remove old recipe, and create patch for Fossil 1.36
* Remove fossil-1.35 recipe
  * Create patches directory and add patch for Fossil 1.36
  * Patch is only temporary, as Fossil 1.37 will have the necessary fix
2016-11-06 18:24:18 -05:00

16 lines
458 B
Diff

diff --git a/src/tkt.c b/src/tkt.c
index 100e8f1..09aa68a 100644
--- a/src/tkt.c
+++ b/src/tkt.c
@@ -548,8 +548,9 @@ static int ticket_put(
int needMod /* True if moderation is needed */
){
int result;
+ int rid;
manifest_crosslink_begin();
- int rid = content_put_ex(pTicket, 0, 0, 0, needMod);
+ rid = content_put_ex(pTicket, 0, 0, 0, needMod);
if( rid==0 ){
fossil_fatal("trouble committing ticket: %s", g.zErrMsg);
}