=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/openssl/apps.h,v retrieving revision 1.9 retrieving revision 1.10 diff -c -r1.9 -r1.10 *** src/usr.bin/openssl/apps.h 2014/12/14 14:42:06 1.9 --- src/usr.bin/openssl/apps.h 2014/12/28 14:21:42 1.10 *************** *** 1,4 **** ! /* $OpenBSD: apps.h,v 1.9 2014/12/14 14:42:06 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * --- 1,4 ---- ! /* $OpenBSD: apps.h,v 1.10 2014/12/28 14:21:42 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * *************** *** 296,305 **** } type; union { char **arg; int *flag; int *value; } opt; - int (*func)(struct option *opt, char *arg); const int value; }; --- 296,306 ---- } type; union { char **arg; + int (*argfunc)(char *arg); int *flag; + int (*func)(void); int *value; } opt; const int value; };