]> andersk Git - openssh.git/blobdiff - readpass.c
- More reformatting merged from OpenBSD CVS
[openssh.git] / readpass.c
index f5b4802e6550784305d9153dcd36a97be8d502ac..b23959cd127158cf8f5a802936ca5493cd4e653b 100644 (file)
@@ -38,10 +38,12 @@ intr_handler(int sig)
        kill(getpid(), sig);
 }
 
-/* Reads a passphrase from /dev/tty with echo turned off.  Returns the
-   passphrase (allocated with xmalloc).  Exits if EOF is encountered.
-   The passphrase if read from stdin if from_stdin is true (as is the
-   case with ssh-keygen).  */
+/*
+ * Reads a passphrase from /dev/tty with echo turned off.  Returns the
+ * passphrase (allocated with xmalloc).  Exits if EOF is encountered. The
+ * passphrase if read from stdin if from_stdin is true (as is the case with
+ * ssh-keygen).
+ */
 
 char *
 read_passphrase(const char *prompt, int from_stdin)
@@ -53,8 +55,10 @@ read_passphrase(const char *prompt, int from_stdin)
        if (from_stdin)
                f = stdin;
        else {
-               /* Read the passphrase from /dev/tty to make it possible
-                  to ask it even when stdin has been redirected. */
+               /*
+                * Read the passphrase from /dev/tty to make it possible to
+                * ask it even when stdin has been redirected.
+                */
                f = fopen("/dev/tty", "r");
                if (!f) {
                        /* No controlling terminal and no DISPLAY.  Nowhere to read. */
@@ -101,8 +105,10 @@ read_passphrase(const char *prompt, int from_stdin)
                *strchr(buf, '\n') = 0;
        /* Allocate a copy of the passphrase. */
        cp = xstrdup(buf);
-       /* Clear the buffer so we don\'t leave copies of the passphrase
-          laying around. */
+       /*
+        * Clear the buffer so we don\'t leave copies of the passphrase
+        * laying around.
+        */
        memset(buf, 0, sizeof(buf));
        /* Print a newline since the prompt probably didn\'t have one. */
        fprintf(stderr, "\n");
This page took 0.031202 seconds and 4 git commands to generate.