=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/openssl/apps.h,v retrieving revision 1.5 retrieving revision 1.6 diff -c -r1.5 -r1.6 *** src/usr.bin/openssl/apps.h 2014/08/28 13:39:07 1.5 --- src/usr.bin/openssl/apps.h 2014/08/28 14:15:28 1.6 *************** *** 1,4 **** ! /* $OpenBSD: apps.h,v 1.5 2014/08/28 13:39:07 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * --- 1,4 ---- ! /* $OpenBSD: apps.h,v 1.6 2014/08/28 14:15:28 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * *************** *** 289,294 **** --- 289,295 ---- enum { OPTION_ARG, OPTION_ARG_FORMAT, + OPTION_ARG_FUNC, OPTION_ARG_INT, OPTION_FLAG, OPTION_FLAG_ORD, *************** *** 297,302 **** --- 298,304 ---- union { char **arg; int *flag; + int (*func)(struct option *opt, char *arg); int *value; } opt; const int value;