]> andersk Git - openssh.git/blobdiff - misc.c
- deraadt@cvs.openbsd.org 2001/12/05 10:06:12
[openssh.git] / misc.c
diff --git a/misc.c b/misc.c
index 620121fdca29f7e2fbf915c764a2e4bfb73e7949..b74ebb894f1ede474f80c912dde6b4c3c1a7c728 100644 (file)
--- a/misc.c
+++ b/misc.c
@@ -1,4 +1,4 @@
-/*     $OpenBSD: misc.c,v 1.12 2001/06/26 17:27:24 markus Exp $        */
+/*     $OpenBSD: misc.c,v 1.13 2001/12/05 10:06:12 deraadt Exp $       */
 
 /*
  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
@@ -25,7 +25,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: misc.c,v 1.12 2001/06/26 17:27:24 markus Exp $");
+RCSID("$OpenBSD: misc.c,v 1.13 2001/12/05 10:06:12 deraadt Exp $");
 
 #include "misc.h"
 #include "log.h"
@@ -37,7 +37,7 @@ chop(char *s)
 {
        char *t = s;
        while (*t) {
-               if(*t == '\n' || *t == '\r') {
+               if (*t == '\n' || *t == '\r') {
                        *t = '\0';
                        return s;
                }
This page took 0.048047 seconds and 4 git commands to generate.