From 62b92bb22953e653e959d87f1855d28c7c42359d Mon Sep 17 00:00:00 2001 From: Johannes 'josch' Schauer Date: Mon, 1 Oct 2018 17:14:59 +0200 Subject: [PATCH] fix copy-paste error --- mmdebstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mmdebstrap b/mmdebstrap index 05c105c..919668b 100755 --- a/mmdebstrap +++ b/mmdebstrap @@ -95,7 +95,7 @@ sub test_unshare() { # otherwise we will get "Modification of a read-only value attempted" my $unshare_flags = CLONE_NEWUSER; # we spawn a new per process because if unshare succeeds, we would - # otherwise have unshared the sbuild process itself which we don't want + # otherwise have unshared the mmdebstrap process itself which we don't want my $pid = fork() // die "fork() failed: $!"; if ($pid == 0) { my $ret = syscall &SYS_unshare, $unshare_flags;