]> git.ozlabs.org Git - ppp.git/blobdiff - pppd/plugins/radius/radiusclient/lib/strdup.c
Whitespace tidying.
[ppp.git] / pppd / plugins / radius / radiusclient / lib / strdup.c
index 0c487bf3ba1760516d7ebdf66d6c8b971e46e2fd..bf923e839264ee9324ce0269ee863d7a9952c16e 100644 (file)
@@ -1,11 +1,11 @@
 /*
- * $Id: strdup.c,v 1.1 2002/01/22 16:03:02 dfs Exp $
+ * $Id: strdup.c,v 1.2 2002/02/27 15:51:20 dfs Exp $
  *
  * Copyright (C) 1996 Lars Fenneberg and Christian Graefe
  *
- * This file is provided under the terms and conditions of the GNU general 
- * public license, version 2 or any later version, incorporated herein by 
- * reference. 
+ * This file is provided under the terms and conditions of the GNU general
+ * public license, version 2 or any later version, incorporated herein by
+ * reference.
  *
  */
 
@@ -29,5 +29,5 @@ char *strdup(char *str)
        if ((p = (char *)malloc(strlen(str)+1)) == NULL)
                return p;
 
-       return strcpy(p, str);  
+       return strcpy(p, str);
 }