From 31ccf2f8134538bd3f4b2bad0d092536b3adb519 Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Tue, 22 Sep 2009 14:06:40 +0000 Subject: Sync OpenBSD patchset 342: Use KEYC_NONE constant instead of 0 on init. --- cmd-set-password.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmd-set-password.c') diff --git a/cmd-set-password.c b/cmd-set-password.c index 68a6d944..3a659a41 100644 --- a/cmd-set-password.c +++ b/cmd-set-password.c @@ -1,4 +1,4 @@ -/* $Id: cmd-set-password.c,v 1.8 2009-07-28 22:12:16 tcunha Exp $ */ +/* $Id: cmd-set-password.c,v 1.9 2009-09-22 14:06:40 tcunha Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott @@ -66,7 +66,7 @@ cmd_set_password_parse(struct cmd *self, int argc, char **argv, char **cause) int opt; char *out; - self->entry->init(self, 0); + self->entry->init(self, KEYC_NONE); data = self->data; while ((opt = getopt(argc, argv, "c")) != -1) { -- cgit