24 lines
904 B
Diff
24 lines
904 B
Diff
|
From 25a7f022e7e2e004f12757b7e73d7b7aecfe8926 Mon Sep 17 00:00:00 2001
|
||
|
From: Martin Pitt <martin.pitt@ubuntu.com>
|
||
|
Date: Sat, 18 Apr 2015 22:38:13 +0100
|
||
|
Subject: [PATCH] exit-status: Fix "NOTINSSTALLED" typo
|
||
|
|
||
|
(cherry picked from commit 9f8f87e375175536a972feab79c2ff8901c47f8e)
|
||
|
---
|
||
|
src/shared/exit-status.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/shared/exit-status.c b/src/shared/exit-status.c
|
||
|
index 5c73b4d3c0..90c83a47a8 100644
|
||
|
--- a/src/shared/exit-status.c
|
||
|
+++ b/src/shared/exit-status.c
|
||
|
@@ -167,7 +167,7 @@ const char* exit_status_to_string(ExitStatus status, ExitStatusLevel level) {
|
||
|
return "NOPERMISSION";
|
||
|
|
||
|
case EXIT_NOTINSTALLED:
|
||
|
- return "NOTINSSTALLED";
|
||
|
+ return "NOTINSTALLED";
|
||
|
|
||
|
case EXIT_NOTCONFIGURED:
|
||
|
return "NOTCONFIGURED";
|