Displaying 2 results from an estimated 2 matches for "no_name".
Did you mean:
nb_name
2016 Jan 06
0
[PATCH klibc] gzip: Fix silent fallback to decompression
...#endif
int to_stdout; /* output to stdout (-c) */
-#ifndef decompress
+#ifdef decompress
+int decompress_wanted;
+#else
int decompress; /* decompress (-d) */
+#define decompress_wanted decompress
#endif
int force; /* don't ask questions, compress links (-f) */
int no_name = -1; /* don't save or restore the original file name */
@@ -259,17 +262,13 @@ int main (argc, argv)
* Systems which do not support links can still use -d or -dc.
* Ignore an .exe extension for MSDOS, OS/2 and VMS.
*/
-#ifndef decompress
if ( strncmp(progname, "...
2016 Jan 06
0
[klibc:master] gzip: Fix silent fallback to decompression
...#endif
int to_stdout; /* output to stdout (-c) */
-#ifndef decompress
+#ifdef decompress
+int decompress_wanted;
+#else
int decompress; /* decompress (-d) */
+#define decompress_wanted decompress
#endif
int force; /* don't ask questions, compress links (-f) */
int no_name = -1; /* don't save or restore the original file name */
@@ -259,17 +262,13 @@ int main (argc, argv)
* Systems which do not support links can still use -d or -dc.
* Ignore an .exe extension for MSDOS, OS/2 and VMS.
*/
-#ifndef decompress
if ( strncmp(progname, "...