From ac0786c828245b186b6391da5a2cf2b92ce423fa Mon Sep 17 00:00:00 2001 From: "Bruce A. Mah" Date: Fri, 3 Jan 2014 11:24:06 -0800 Subject: [PATCH] Fix typos: s/exitting/exiting/ Bump a couple of copyright dates while here. --- examples/mis.c | 2 +- src/main.c | 4 ++-- src/timer.h | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/mis.c b/examples/mis.c index 27ee7f0..9e72197 100644 --- a/examples/mis.c +++ b/examples/mis.c @@ -43,7 +43,7 @@ main( int argc, char** argv ) fprintf( stderr, "%s: error - %s\n\n", argv0, iperf_strerror( i_errno ) ); ++consecutive_errors; if (consecutive_errors >= 5) { - fprintf(stderr, "%s: too many errors, exitting\n", argv0); + fprintf(stderr, "%s: too many errors, exiting\n", argv0); break; } } else diff --git a/src/main.c b/src/main.c index fea782f..66efd6a 100644 --- a/src/main.c +++ b/src/main.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009-2013, The Regents of the University of California, + * Copyright (c) 2009-2014, The Regents of the University of California, * through Lawrence Berkeley National Laboratory (subject to receipt of any * required approvals from the U.S. Dept. of Energy). All rights reserved. * @@ -118,7 +118,7 @@ run(struct iperf_test *test) fprintf(stderr, "\n"); ++consecutive_errors; if (consecutive_errors >= 5) { - fprintf(stderr, "too many errors, exitting\n"); + fprintf(stderr, "too many errors, exiting\n"); break; } } else diff --git a/src/timer.h b/src/timer.h index 03dafe3..8b767eb 100644 --- a/src/timer.h +++ b/src/timer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009-2011, The Regents of the University of California, + * Copyright (c) 2009-2014, The Regents of the University of California, * through Lawrence Berkeley National Laboratory (subject to receipt of any * required approvals from the U.S. Dept. of Energy). All rights reserved. * @@ -73,7 +73,7 @@ extern void tmr_cancel( Timer* timer ); /* Clean up the timers package, freeing any unused storage. */ extern void tmr_cleanup( void ); -/* Cancel all timers and free storage, usually in preparation for exitting. */ +/* Cancel all timers and free storage, usually in preparation for exiting. */ extern void tmr_destroy( void ); #endif /* __TIMER_H */