Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-4]: src/usr.bin/at Pull up revision 1.14 (requested by rh):
details: https://anonhg.NetBSD.org/src/rev/fa8fdfe6b58c
branches: netbsd-1-4
changeset: 470558:fa8fdfe6b58c
user: he <he%NetBSD.org@localhost>
date: Fri May 05 13:22:44 2000 +0000
description:
Pull up revision 1.14 (requested by rh):
Correct wrong variable being tested in env parsing loop.
diffstat:
usr.bin/at/at.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r de91a8b21a8c -r fa8fdfe6b58c usr.bin/at/at.c
--- a/usr.bin/at/at.c Fri May 05 13:17:46 2000 +0000
+++ b/usr.bin/at/at.c Fri May 05 13:22:44 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: at.c,v 1.12 1998/07/27 07:41:31 mycroft Exp $ */
+/* $NetBSD: at.c,v 1.12.2.1 2000/05/05 13:22:44 he Exp $ */
/*
* at.c : Put file into atrun queue
@@ -75,7 +75,7 @@
#if 0
static char rcsid[] = "$OpenBSD: at.c,v 1.15 1998/06/03 16:20:26 deraadt Exp $";
#else
-__RCSID("$NetBSD: at.c,v 1.12 1998/07/27 07:41:31 mycroft Exp $");
+__RCSID("$NetBSD: at.c,v 1.12.2.1 2000/05/05 13:22:44 he Exp $");
#endif
#endif
@@ -323,7 +323,7 @@
char *eqp;
eqp = strchr(*atenv, '=');
- if (ap == NULL)
+ if (eqp == NULL)
eqp = *atenv;
else {
int i;
Home |
Main Index |
Thread Index |
Old Index