Fix symbol name
[uffi.git] / examples / file-socket.lisp
index 58ef17c9d04acc527edf6e51bee9943b5a9b32af..7f2fa16b13e97e519c6e9e609db74956bc0d5c28 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)
      (serv-addr :void-pointer)
      (addr-len :int))
     :returning :int)
-                 
+
 (defun connect-to-file-socket (filename)
   (let ((socket (c-socket PF_UNIX SOCK_STREAM 0)))
     (if (plusp socket)
-       (let ((stream (c-connect socket filename (length filename))))
-         stream)
+        (let ((stream (c-connect socket filename (length filename))))
+          stream)
       (error "Unable to create socket"))))