]> asedeno.scripts.mit.edu Git - PuTTY_svn.git/blobdiff - ssh.c
Stop the "Sent username %s" message coming up twice in pscp -v
[PuTTY_svn.git] / ssh.c
diff --git a/ssh.c b/ssh.c
index 3eddd7bb3d2e3a23edb35fb64bf022c87cec5ddf..29dd3fab54db5903dadca0977dff8aa812ac9b68 100644 (file)
--- a/ssh.c
+++ b/ssh.c
@@ -1255,20 +1255,20 @@ static int do_ssh1_login(unsigned char *in, int inlen, int ispkt)
            c_write("\r\n", 2);
            username[strcspn(username, "\n\r")] = '\0';
        } else {
-           char stuff[200];
            strncpy(username, cfg.username, 99);
            username[99] = '\0';
-            if ((flags & FLAG_VERBOSE) || (flags & FLAG_INTERACTIVE)) {
-               sprintf(stuff, "Sent username \"%s\".\r\n", username);
-                c_write(stuff, strlen(stuff));
-           }
        }
 
        send_packet(SSH1_CMSG_USER, PKT_STR, username, PKT_END);
        {
-           char userlog[20+sizeof(username)];
+           char userlog[22+sizeof(username)];
            sprintf(userlog, "Sent username \"%s\"", username);
            logevent(userlog);
+            if (flags & FLAG_INTERACTIVE &&
+                (!((flags & FLAG_STDERR) && (flags & FLAG_VERBOSE)))) {
+               strcat(userlog, "\r\n");
+                c_write(userlog, strlen(userlog));
+           }
        }
     }