Module Name: src
Committed By: pooka
Date: Thu Nov 4 23:38:18 UTC 2010
Modified Files:
src/sbin/route: route.c
Log Message:
#ifdef variable correctly
To generate a diff of this commit:
cvs rdiff -u -r1.123 -r1.124 src/sbin/route/route.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sbin/route/route.c
diff -u src/sbin/route/route.c:1.123 src/sbin/route/route.c:1.124
--- src/sbin/route/route.c:1.123 Thu Nov 4 23:37:27 2010
+++ src/sbin/route/route.c Thu Nov 4 23:38:18 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: route.c,v 1.123 2010/11/04 23:37:27 pooka Exp $ */
+/* $NetBSD: route.c,v 1.124 2010/11/04 23:38:18 pooka Exp $ */
/*
* Copyright (c) 1983, 1989, 1991, 1993
@@ -39,7 +39,7 @@
#if 0
static char sccsid[] = "@(#)route.c 8.6 (Berkeley) 4/28/95";
#else
-__RCSID("$NetBSD: route.c,v 1.123 2010/11/04 23:37:27 pooka Exp $");
+__RCSID("$NetBSD: route.c,v 1.124 2010/11/04 23:38:18 pooka Exp $");
#endif
#endif /* not lint */
@@ -160,9 +160,10 @@
int
main(int argc, char * const *argv)
{
- int ch, error;
+ int ch;
#ifdef RUMP_ACTION
+ int error;
if ((error = rumpclient_init()) != 0)
errx(1, "rump client init: %s", strerror(error));
#endif