[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[or-cvs] remove spurious semicolons



Update of /home/or/cvsroot/tor/src/common
In directory moria.mit.edu:/tmp/cvs-serv23256/src/common

Modified Files:
	compat.c 
Log Message:
remove spurious semicolons

Index: compat.c
===================================================================
RCS file: /home/or/cvsroot/tor/src/common/compat.c,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- compat.c	22 Feb 2005 04:50:31 -0000	1.37
+++ compat.c	22 Feb 2005 04:55:19 -0000	1.38
@@ -536,11 +536,11 @@
     struct hostent hostent;
     int r;
     r = gethostbyname_r(name, &hostent, buf, sizeof(buf), &ent, &err);
-#elif defined(HAVE_GETHOSTBYNAME_R_5_ARG);
+#elif defined(HAVE_GETHOSTBYNAME_R_5_ARG)
     char buf[2048];
     struct hostent hostent;
     ent = gethostbyname_r(name, &hostent, buf, sizeof(buf), &err);
-#elif defined(HAVE_GETHOSTBYNAME_R_3_ARG);
+#elif defined(HAVE_GETHOSTBYNAME_R_3_ARG)
     struct hostent_data data;
     struct hostent hent;
     memset(&data, 0, sizeof(data));