[or-cvs] make the license explicit on fakepoll.[ch]

Roger Dingledine arma at seul.org
Tue Dec 9 21:37:28 UTC 2003


Update of /home/or/cvsroot/src/common
In directory moria.mit.edu:/home2/arma/work/onion/cvs/src/common

Modified Files:
	fakepoll.c fakepoll.h 
Log Message:
make the license explicit on fakepoll.[ch]


Index: fakepoll.c
===================================================================
RCS file: /home/or/cvsroot/src/common/fakepoll.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- fakepoll.c	27 Oct 2003 10:26:44 -0000	1.12
+++ fakepoll.c	9 Dec 2003 21:37:26 -0000	1.13
@@ -1,10 +1,8 @@
-/*
- * fakepoll.c
- *
- * On systems where 'poll' doesn't exist, fake it with 'select'.
- *
- * Nick Mathewson <nickm at freehaven.net>
- */
+/* Copyright 2002,2003 Nick Mathewson, Roger Dingledine, Naval Research Lab. */
+/* See LICENSE for licensing information */
+/* $Id$ */
+
+/* On systems where 'poll' doesn't exist, fake it with 'select'. */
 
 #include "orconfig.h"
 #include "fakepoll.h"

Index: fakepoll.h
===================================================================
RCS file: /home/or/cvsroot/src/common/fakepoll.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- fakepoll.h	18 Jun 2003 07:44:48 -0000	1.3
+++ fakepoll.h	9 Dec 2003 21:37:26 -0000	1.4
@@ -1,10 +1,6 @@
-/*
- * fakepoll.h
- *
- * On systems where 'poll' doesn't exist, fake it with 'select'.
- *
- * Nick Mathewson <nickm at freehaven.net>
- */
+/* Copyright 2002,2003 Nick Mathewson, Roger Dingledine, Naval Research Lab. */
+/* See LICENSE for licensing information */
+/* $Id$ */
 
 #ifndef __FAKEPOLL_H
 #define __FAKEPOLL_H
@@ -16,9 +12,9 @@
 #define USE_FAKE_POLL
 
 struct pollfd {
-	int fd;
-	short events;
-	short revents;
+  int fd;
+  short events;
+  short revents;
 };
 
 #define POLLIN   0x0001



More information about the tor-commits mailing list