X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=examples%2Fgetshells.lisp;h=c3093f0f007f3fec1a5ff21513f43a9025f31cdc;hb=54929de80ac68bb7ef45a28e70945c7243d39c82;hp=1b05d1009d1e4bcc06beebd69cf5a887719f338f;hpb=a95b9a217335917d96b8c0cced4f49c3e4846115;p=uffi.git diff --git a/examples/getshells.lisp b/examples/getshells.lisp index 1b05d10..c3093f0 100644 --- a/examples/getshells.lisp +++ b/examples/getshells.lisp @@ -7,13 +7,10 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Mar 2002 ;;;; -;;;; $Id: getshells.lisp,v 1.1 2002/09/30 10:02:36 kevin Exp $ +;;;; $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)))