[wireshark] Fix spelling of the security message

Jan Šafránek jsafrane at fedoraproject.org
Tue Sep 13 08:11:22 UTC 2011


commit 95155967416a92504788be621d40070cc0ad5f24
Author: Jan Safranek <jsafrane at redhat.com>
Date:   Tue Sep 13 10:06:17 2011 +0200

    Fix spelling of the security message

 wireshark-1.6.1-group-msg.patch |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/wireshark-1.6.1-group-msg.patch b/wireshark-1.6.1-group-msg.patch
index 1457742..c5b6ccd 100644
--- a/wireshark-1.6.1-group-msg.patch
+++ b/wireshark-1.6.1-group-msg.patch
@@ -25,7 +25,7 @@ diff -up wireshark-1.6.1/capture_sync.c.group-msg wireshark-1.6.1/capture_sync.c
 -      g_snprintf(errmsg, sizeof errmsg, "Couldn't run %s in child process: %s",
 -                argv[0], g_strerror(errno));
 +      if (errno == EPERM || errno == EACCES)
-+	      securitymsg = "\nAre you memeber of 'wireshark' group? Try running\n'usermod -a -G wireshark _your_username_' as root.";
++	      securitymsg = "\nAre you a memeber of the 'wireshark' group? Try running\n'usermod -a -G wireshark _your_username_' as root.";
 +      g_snprintf(errmsg, sizeof errmsg, "Couldn't run %s in child process: %s%s",
 +                argv[0], g_strerror(errno), securitymsg);
        sync_pipe_errmsg_to_parent(2, errmsg, "");
@@ -46,7 +46,7 @@ diff -up wireshark-1.6.1/capture_sync.c.group-msg wireshark-1.6.1/capture_sync.c
 -        g_snprintf(errmsg, sizeof errmsg, "Couldn't run %s in child process: %s",
 -                   argv[0], g_strerror(errno));
 +	if (errno == EPERM || errno == EACCES)
-+		securitymsg = "\nAre you memeber of 'wireshark' group? Try running\n'usermod -a -G wireshark _your_username_' as root.";
++		securitymsg = "\nAre you a memeber of the 'wireshark' group? Try running\n'usermod -a -G wireshark _your_username_' as root.";
 +        g_snprintf(errmsg, sizeof errmsg, "Couldn't run %s in child process: %s%s",
 +                   argv[0], g_strerror(errno), securitymsg);
          sync_pipe_errmsg_to_parent(2, errmsg, "");


More information about the scm-commits mailing list