Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-5]: src/crypto/dist/heimdal/kadmin Pull up revision 1.2 (reques...
details: https://anonhg.NetBSD.org/src/rev/ca79e46f07b2
branches: netbsd-1-5
changeset: 491713:ca79e46f07b2
user: he <he%NetBSD.org@localhost>
date: Wed May 09 20:35:16 2001 +0000
description:
Pull up revision 1.2 (requested by joda):
Fix argument number calculation.
(Change pulled up is actually 1.1.1.3 -> 1.2)
diffstat:
crypto/dist/heimdal/kadmin/rename.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (28 lines):
diff -r efa32fa7993f -r ca79e46f07b2 crypto/dist/heimdal/kadmin/rename.c
--- a/crypto/dist/heimdal/kadmin/rename.c Wed May 09 20:30:54 2001 +0000
+++ b/crypto/dist/heimdal/kadmin/rename.c Wed May 09 20:35:16 2001 +0000
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997-2000 Kungliga Tekniska Högskolan
+ * Copyright (c) 1997-2001 Kungliga Tekniska Högskolan
* (Royal Institute of Technology, Stockholm, Sweden).
* All rights reserved.
*
@@ -33,7 +33,7 @@
#include "kadmin_locl.h"
-RCSID("$Id: rename.c,v 1.1.1.1.2.1 2001/04/05 23:23:00 he Exp $");
+RCSID("$Id: rename.c,v 1.1.1.1.2.2 2001/05/09 20:35:16 he Exp $");
static struct getargs args[] = {
{ "help", 'h', arg_flag, NULL }
@@ -62,7 +62,7 @@
usage ();
return 0;
}
- if(argc - optind < 3 || help_flag) {
+ if(argc - optind != 2 || help_flag) {
usage ();
return 0;
}
Home |
Main Index |
Thread Index |
Old Index