Commit 7ce05074 authored by Colin Ian King's avatar Colin Ian King Committed by Shuah Khan
Browse files

selftests: safesetid: Fix spelling mistake "cant" -> "can't"



There is a spelling mistake in an error message. Fix it.

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
parent a051b2e5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -152,7 +152,7 @@ static void write_policies(void)

	fd = open(add_whitelist_policy_file, O_WRONLY);
	if (fd < 0)
		die("cant open add_whitelist_policy file\n");
		die("can't open add_whitelist_policy file\n");
	written = write(fd, policy_str, strlen(policy_str));
	if (written != strlen(policy_str)) {
		if (written >= 0) {