Changeset 840 for trunk/updater/bsdiff/bsdiff.cpp – HoverRace
Show
Ignore:
Timestamp:
01/30/10 18:28:45 (6 months ago)
Author:
ryan
Message:

Inline CreatePatch() and PatchHoverRace(), include a couple headers that were necessary but not included (yet it still compiled for some reason), update bsdiff and bspatch to give error messages and wait upon failure, and finally fix some code that looks for files in ZIP archives (remove leading slashes). Then fix code that creates the ZIP archives and DIGEST file to not include those slashes either.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/updater/bsdiff/bsdiff.cpp

    r781 r840  
    2121void err(char a, char* format, char* param) 
    2222{ 
    23     printf(format,param); 
     23    printf("bsdiff error: "); 
     24    printf(format,param); 
     25    printf("\n"); 
     26    Sleep(4000); 
    2427    exit(1); 
    2528} 
    2629void err(char a, char* format) 
    2730{ 
    28     printf(format); 
     31    printf("bsdiff error: "); 
     32    printf(format); 
     33    printf("\n"); 
     34    Sleep(4000); 
    2935    exit(1); 
    3036}