Browse Source

sdlog2: Remove copying of deprecated file

sbg
Lorenz Meier 10 years ago
parent
commit
84b4e30fbd
  1. 5
      src/modules/sdlog2/sdlog2.c

5
src/modules/sdlog2/sdlog2.c

@ -1083,6 +1083,10 @@ int sdlog2_thread_main(int argc, char *argv[]) @@ -1083,6 +1083,10 @@ int sdlog2_thread_main(int argc, char *argv[])
return 1;
}
#if 0
// DEPRECATED
/* copy conversion scripts */
const char *converter_in = "/etc/logging/conv.zip";
char *converter_out = malloc(64);
@ -1093,6 +1097,7 @@ int sdlog2_thread_main(int argc, char *argv[]) @@ -1093,6 +1097,7 @@ int sdlog2_thread_main(int argc, char *argv[])
}
free(converter_out);
#endif
/* initialize log buffer with specified size */
warnx("log buffer size: %i bytes", log_buffer_size);

Loading…
Cancel
Save