=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/find/function.c,v retrieving revision 1.39 retrieving revision 1.40 diff -c -r1.39 -r1.40 *** src/usr.bin/find/function.c 2013/04/19 15:51:27 1.39 --- src/usr.bin/find/function.c 2013/04/20 04:52:24 1.40 *************** *** 1,4 **** ! /* $OpenBSD: function.c,v 1.39 2013/04/19 15:51:27 deraadt Exp $ */ /*- * Copyright (c) 1990, 1993 --- 1,4 ---- ! /* $OpenBSD: function.c,v 1.40 2013/04/20 04:52:24 deraadt Exp $ */ /*- * Copyright (c) 1990, 1993 *************** *** 144,152 **** } /* ! * Convert the string with strtol(). Note, if strtol() returns zero ! * and endchar points to the beginning of the string we know we have ! * a syntax error. */ value = strtoll(str, &endchar, 10); if (value == 0 && endchar == str) --- 144,152 ---- } /* ! * Convert the string with strtoll(). Note, if strtoll() returns ! * zero and endchar points to the beginning of the string we know ! * we have a syntax error. */ value = strtoll(str, &endchar, 10); if (value == 0 && endchar == str)