]> Dogcows Code - chaz/tar/commitdiff
*** empty log message ***
authorFrançois Pinard <pinard@iro.umontreal.ca>
Wed, 16 Nov 1994 02:46:06 +0000 (02:46 +0000)
committerFrançois Pinard <pinard@iro.umontreal.ca>
Wed, 16 Nov 1994 02:46:06 +0000 (02:46 +0000)
src/extract.c

index 555df1d1ba1832b8c7b87822c5c4f52c46c149d5..d6cdc3c553d80824178ddbc89db0692788a804c9 100644 (file)
@@ -293,7 +293,7 @@ extract_archive()
                         fd = 1;
                         goto extract_file;
                 }
- #ifdef O_CTG
+#ifdef O_CTG
                 /*
                  * Contiguous files (on the Masscomp) have to specify
                  * the size in the open call that creates them.
@@ -304,9 +304,9 @@ extract_archive()
                                   openflag | O_CTG,
                                   hstat.st_mode, hstat.st_size);
                 else
- #endif
+#endif
                 {
- #ifdef NO_OPEN3
+#ifdef NO_OPEN3
                         /*
                          * On raw V7 we won't let them specify -k (f_keep), but
                          * we just bull ahead and create the files.
@@ -315,13 +315,13 @@ extract_archive()
                                     ? longname
                                     : head->header.name) + skipcrud, 
                                    hstat.st_mode);
- #else
+#else
                         /*
                          * With 3-arg open(), we can do this up right.
                          */
                         fd = open(skipcrud + current_file_name,
                                   openflag, hstat.st_mode);
- #endif
+#endif
                 }
 
                 if (fd < 0) {
This page took 0.024934 seconds and 4 git commands to generate.