]> andersk Git - openssh.git/commitdiff
- (dtucker) [openbsd-compat/bsd-cygwin_util.c] Make loop counter unsigned
authordtucker <dtucker>
Sun, 12 Feb 2006 00:59:08 +0000 (00:59 +0000)
committerdtucker <dtucker>
Sun, 12 Feb 2006 00:59:08 +0000 (00:59 +0000)
   to silence compiler warning, from vinschen at redhat.com.

ChangeLog
openbsd-compat/bsd-cygwin_util.c

index a0aab3cf08397a8ea15a8bd286f49c134284b580..c4cc350af8af0226ecf63bc348d8d3d5b283e763 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+20060212
+ - (dtucker) [openbsd-compat/bsd-cygwin_util.c] Make loop counter unsigned
+   to silence compiler warning, from vinschen at redhat.com.
+
 20060208
  - (tim) [session.c] Logout records were not updated on systems with
    post auth privsep disabled due to bug 1086 changes. Analysis and patch
index 94f63f1a574f7d241416285752fd2cb52a7719af..d70582b5d9b2d3e0be4f008ebe0ad66ce3ed9fe6 100644 (file)
@@ -268,7 +268,7 @@ char **
 fetch_windows_environment(void)
 {
        char **e, **p;
-       int i, idx = 0;
+       unsigned int i, idx = 0;
 
        p = xmalloc((WENV_SIZ + 1) * sizeof(char *));
        for (e = environ; *e != NULL; ++e) {
This page took 0.263103 seconds and 5 git commands to generate.