Deleted Added
full compact
command.c (228990) command.c (249582)
1/*-
2 * Copyright (c) 1996 - 2001 Brian Somers <brian@Awfulhak.org>
3 * based on work by Toshiharu OHNO <tony-o@iij.ad.jp>
4 * Internet Initiative Japan, Inc (IIJ)
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 11 unchanged lines hidden (view full) ---

20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
1/*-
2 * Copyright (c) 1996 - 2001 Brian Somers <brian@Awfulhak.org>
3 * based on work by Toshiharu OHNO <tony-o@iij.ad.jp>
4 * Internet Initiative Japan, Inc (IIJ)
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 11 unchanged lines hidden (view full) ---

20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 * $FreeBSD: head/usr.sbin/ppp/command.c 228990 2011-12-30 10:58:14Z uqs $
28 * $FreeBSD: head/usr.sbin/ppp/command.c 249582 2013-04-17 11:40:10Z gabor $
29 */
30
31#include <sys/param.h>
32#include <netinet/in_systm.h>
33#include <netinet/in.h>
34#include <netinet/ip.h>
35#include <arpa/inet.h>
36#include <sys/socket.h>

--- 374 unchanged lines hidden (view full) ---

411 return 0;
412}
413
414#define isinword(ch) (isalnum(ch) || (ch) == '_')
415
416static char *
417strstrword(char *big, const char *little)
418{
29 */
30
31#include <sys/param.h>
32#include <netinet/in_systm.h>
33#include <netinet/in.h>
34#include <netinet/ip.h>
35#include <arpa/inet.h>
36#include <sys/socket.h>

--- 374 unchanged lines hidden (view full) ---

411 return 0;
412}
413
414#define isinword(ch) (isalnum(ch) || (ch) == '_')
415
416static char *
417strstrword(char *big, const char *little)
418{
419 /* Get the first occurrance of the word ``little'' in ``big'' */
419 /* Get the first occurrence of the word ``little'' in ``big'' */
420 char *pos;
421 int len;
422
423 pos = big;
424 len = strlen(little);
425
426 while ((pos = strstr(pos, little)) != NULL)
427 if ((pos != big && isinword(pos[-1])) || isinword(pos[len]))

--- 2905 unchanged lines hidden ---
420 char *pos;
421 int len;
422
423 pos = big;
424 len = strlen(little);
425
426 while ((pos = strstr(pos, little)) != NULL)
427 if ((pos != big && isinword(pos[-1])) || isinword(pos[len]))

--- 2905 unchanged lines hidden ---