- Fixed zipdir for Windows.

SVN r1090 (trunk)
This commit is contained in:
Randy Heit 2008-07-24 22:20:58 +00:00
parent a65f5c67a3
commit 2f7b7673f8
2 changed files with 83 additions and 84 deletions

View file

@ -1,5 +1,5 @@
July 23, 2008 (Changes by Graf Zahl) July 23, 2008 (Changes by Graf Zahl)
- Fixed: Thew sounds of Strife's intro need CHAN_UI. - Fixed: The sounds of Strife's intro need CHAN_UI.
- Changed all instances of playing the chat sounds to use CHAN_UI. - Changed all instances of playing the chat sounds to use CHAN_UI.
July 21, 2008 July 21, 2008

View file

@ -319,6 +319,7 @@ dir_tree_t *add_dir(const char *dirpath)
dir_tree_t *add_dirs(char **argv) dir_tree_t *add_dirs(char **argv)
{ {
dir_tree_t *tree, *trees = NULL; dir_tree_t *tree, *trees = NULL;
char *s;
while (*argv != NULL) while (*argv != NULL)
{ {
@ -608,12 +609,10 @@ int append_to_zip(zipFile zipfile, const file_sorted_t *file)
int __cdecl main (int argc, char **argv) int __cdecl main (int argc, char **argv)
{ {
int i;
dir_tree_t *tree, *trees; dir_tree_t *tree, *trees;
file_entry_t *file; file_entry_t *file;
struct stat zipstat; struct stat zipstat;
int needwrite; int needwrite;
char *s;
if (argc < 3) if (argc < 3)
{ {