chiark / gitweb /
Make @t_read@ be static, as it always should have been.
authormdw <mdw>
Sun, 13 Jan 2002 14:57:05 +0000 (14:57 +0000)
committermdw <mdw>
Sun, 13 Jan 2002 14:57:05 +0000 (14:57 +0000)
tun-unet.c

index 99359d7a0d7a33e580ff2be8b3c981689903d28e..80cf73065183a98b77928caf6371480a76bfdd2b 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: tun-unet.c,v 1.4 2001/02/19 19:10:45 mdw Exp $
+ * $Id: tun-unet.c,v 1.5 2002/01/13 14:57:05 mdw Exp $
  *
  * Tunnel interface based on Linux Usernet
  *
@@ -29,6 +29,9 @@
 /*----- Revision history --------------------------------------------------* 
  *
  * $Log: tun-unet.c,v $
+ * Revision 1.5  2002/01/13 14:57:05  mdw
+ * Make @t_read@ be static, as it always should have been.
+ *
  * Revision 1.4  2001/02/19 19:10:45  mdw
  * Set unet devices to be point-to-point.
  *
@@ -68,7 +71,7 @@
  * Use:                Reads data from the tunnel.
  */
 
-void t_read(int fd, unsigned mode, void *v)
+static void t_read(int fd, unsigned mode, void *v)
 {
   tunnel *t = v;
   ssize_t n;