Fix symbol name
[uffi.git] / examples / getshells.lisp
index c28270695a146650cfdc2b9284f223949fd84ddc..c3093f0f007f3fec1a5ff21513f43a9025f31cdc 100644 (file)
@@ -9,11 +9,8 @@
 ;;;;
 ;;;; $Id$
 ;;;;
-;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
+;;;; This file, part of UFFI, is Copyright (c) 2002-2005 by Kevin M. Rosenberg
 ;;;;
-;;;; UFFI users are granted the rights to distribute and use this software
-;;;; as governed by the terms of the Lisp Lesser GNU Public License
-;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
 (in-package :cl-user)
@@ -37,7 +34,7 @@
   (let (shells)
     (do ((shell (uffi:convert-from-cstring (getusershell))
                 (uffi:convert-from-cstring (getusershell))))
-       ((null shell))
+        ((null shell))
       (push shell shells))
     (endusershell)
     (nreverse shells)))