[frozen-bubble] 01/01: s/Can/Cannot/g - thanks olly!

gregor herrmann gregoa at debian.org
Mon Jun 23 22:10:20 UTC 2014


This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository frozen-bubble.

commit e65960136b9739d51bfdef848952825c8111d1cf
Author: gregor herrmann <gregoa at debian.org>
Date:   Tue Jun 24 00:08:35 2014 +0200

    s/Can/Cannot/g - thanks olly!
    
    Git-Dch: Ignore
---
 debian/patches/hardening-server | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/patches/hardening-server b/debian/patches/hardening-server
index c033462..9050f64 100644
--- a/debian/patches/hardening-server
+++ b/debian/patches/hardening-server
@@ -25,10 +25,10 @@ Last-Update: 2014-06-24
 -                        setgid(user->pw_gid);
 -                        setuid(user->pw_uid);
 +                        if (setgid(user->pw_gid) < 0) {
-+                                l3(OUTPUT_TYPE_ERROR, "Can set gid to %d for user %s: %s", user->pw_gid, user_to_switch, strerror(errno));
++                                l3(OUTPUT_TYPE_ERROR, "Cannot set gid to %d for user %s: %s", user->pw_gid, user_to_switch, strerror(errno));
 +                        }
 +                        if (setuid(user->pw_uid) < 0) {
-+                                l3(OUTPUT_TYPE_ERROR, "Can set uid to %d for user %s: %s", user->pw_uid, user_to_switch, strerror(errno));
++                                l3(OUTPUT_TYPE_ERROR, "Cannot set uid to %d for user %s: %s", user->pw_uid, user_to_switch, strerror(errno));
 +                        }
                  } else {
                          l2(OUTPUT_TYPE_ERROR, "Cannot switch user to %s: %s", user_to_switch, strerror(errno));

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/frozen-bubble.git



More information about the Pkg-perl-cvs-commits mailing list