]> sourceware.org Git - newlib-cygwin.git/commitdiff
* security.cc: Fix a few more strace_prints.
authorCorinna Vinschen <corinna@vinschen.de>
Fri, 3 Sep 2004 08:18:41 +0000 (08:18 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Fri, 3 Sep 2004 08:18:41 +0000 (08:18 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/security.cc

index 024a3d0fce5b558f7edce48ecb05077d7cbb5b4e..fd5f7ced4f03dc07d31a9162357cb7f46a9ec533 100644 (file)
@@ -1,3 +1,7 @@
+2004-09-03  Corinna Vinschen  <corinna@vinschen.de>
+
+       * security.cc: Fix a few more strace_prints.
+
 2004-09-02  Christopher Faylor  <cgf@timesys.com>
 
        Regularize most strace_prints throughout so that %E is always preceded
index 378be66ae7dc3d078ae03da6810884126736d6ec..d6ff4f6998f44b90e246d52e6ca1bba15424671d 100644 (file)
@@ -80,7 +80,7 @@ extract_nt_dom_user (const struct passwd *pw, char *domain, char *user)
 
   domain[0] = 0;
   strlcpy (user, pw->pw_name, UNLEN + 1);
-  debug_printf ("pw_gecos %x (%s)", pw->pw_gecos, pw->pw_gecos);
+  debug_printf ("pw_gecos %x (%s)", pw->pw_gecos, pw->pw_gecos);
 
   if ((d = strstr (pw->pw_gecos, "U-")) != NULL &&
       (d == pw->pw_gecos || d[-1] == ','))
@@ -1109,11 +1109,11 @@ read_sd (const char *file, security_descriptor &sd)
                        NULL, 0, &len)
       && GetLastError () != ERROR_INSUFFICIENT_BUFFER)
     {
-      debug_printf ("file %s", file);
+      debug_printf ("file %s", file);
       __seterrno ();
       return -1;
     }
-  debug_printf ("file = %s: len=%d", file, len);
+  debug_printf ("file %s: len %d", file, len);
   if (!sd.malloc (len))
     {
       set_errno (ENOMEM);
@@ -1313,7 +1313,7 @@ get_info_from_sd (PSECURITY_DESCRIPTOR psd, mode_t *attribute,
   else
     get_attribute_from_acl (attribute, acl, owner_sid, group_sid, grp_member);
 
-  syscall_printf ("%sACL %x, uid %d, gid %d",
+  syscall_printf ("%sACL %x, uid %d, gid %d",
                  (!acl_exists || !acl)?"NO ":"", *attribute, uid, gid);
   return;
 }
This page took 0.034577 seconds and 5 git commands to generate.