mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-20 02:30:05 +02:00
* 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
16 lines
458 B
Diff
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);
|
|
}
|