Fossil

Check-in [dd62094499]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:test-delta-apply help test fix reported in [forum:4c3f5658eb|forum post 4c3f5658eb].
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: dd62094499ee8c02411e7239b7179a0ab6a2a7a89a2f4ac4cc120c8fafb39c53
User & Date: stephan 2023-09-08 11:43:44.080
Context
2023-09-09
15:05
Correct inability to use certain commands after doing (open --empty), as reported in [forum:04f86a038c|forum post 04f86a038c] and caused by [4d8c30265b]. ... (check-in: 1ef6499a9a user: stephan tags: trunk)
2023-09-08
11:43
test-delta-apply help test fix reported in [forum:4c3f5658eb|forum post 4c3f5658eb]. ... (check-in: dd62094499 user: stephan tags: trunk)
2023-09-01
11:36
Eliminate duplicate folders on the /dir page when using the Ardoise skin, caused by [32297dde2bee23] and reported by Martin G. in /chat. ... (check-in: dedfb13bf6 user: stephan tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/deltacmd.c.
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
  *pTarget = out;
  return len;
}

/*
** COMMAND: test-delta-apply
**
** Usage: %fossil test-delta-apply FILE1 DELTA
**
** Apply DELTA to FILE1 and output the result.
*/
void delta_apply_cmd(void){
  Blob orig, target, delta;
  if( g.argc!=5 ){
    usage("ORIGIN DELTA TARGET");
  }
  if( blob_read_from_file(&orig, g.argv[2], ExtFILE)<0 ){







|

|







141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
  *pTarget = out;
  return len;
}

/*
** COMMAND: test-delta-apply
**
** Usage: %fossil test-delta-apply FILE1 DELTA FILE2
**
** Apply DELTA to FILE1 and output the result in FILE2.
*/
void delta_apply_cmd(void){
  Blob orig, target, delta;
  if( g.argc!=5 ){
    usage("ORIGIN DELTA TARGET");
  }
  if( blob_read_from_file(&orig, g.argv[2], ExtFILE)<0 ){