Displaying 3 results from an estimated 3 matches for "f02d19dc".
Did you mean:
f02d17bc
2020 Jun 28
2
Re: [PATCH nbdkit 2/2] tar: Rewrite the tar plugin (again), this time in C.
...; static bool
> is_perl_plugin (const char *name)
> {
> - return strcmp (name, "example4") == 0 || strcmp (name, "tar") == 0;
> + return strcmp (name, "example4") == 0;
> }
>
> static void
> diff --git a/.gitignore b/.gitignore
> index f02d19dc..48a5302e 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -79,7 +79,6 @@ plugins/*/*.3
> /plugins/ocaml/nbdkit-ocamlexample-plugin.so
> /plugins/rust/Cargo.lock
> /plugins/rust/target
> -/plugins/tar/nbdkit-tar-plugin
> /plugins/tmpdisk/default-command.c
> /podwrap...
2020 Jun 28
0
[PATCH nbdkit 2/2] tar: Rewrite the tar plugin (again), this time in C.
...apper.c
@@ -85,7 +85,7 @@ static size_t len;
static bool
is_perl_plugin (const char *name)
{
- return strcmp (name, "example4") == 0 || strcmp (name, "tar") == 0;
+ return strcmp (name, "example4") == 0;
}
static void
diff --git a/.gitignore b/.gitignore
index f02d19dc..48a5302e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -79,7 +79,6 @@ plugins/*/*.3
/plugins/ocaml/nbdkit-ocamlexample-plugin.so
/plugins/rust/Cargo.lock
/plugins/rust/target
-/plugins/tar/nbdkit-tar-plugin
/plugins/tmpdisk/default-command.c
/podwrapper.pl
/server/local/nbdkit.pc
diff --git a/...
2020 Jun 28
5
[PATCH nbdkit 0/2] tar: Rewrite the tar plugin (again), this time in C.
For context see these threads:
https://lists.gnu.org/archive/html/qemu-discuss/2020-06/threads.html#00053
https://lists.gnu.org/archive/html/qemu-block/2020-06/threads.html#01496
Rich.