Diff for /embedaddon/sudo/common/list.c between versions 1.1.1.1 and 1.1.1.4

version 1.1.1.1, 2012/02/21 16:23:02 version 1.1.1.4, 2013/10/14 07:56:33
Line 1 Line 1
 /*  /*
 * Copyright (c) 2007-2008, 2010-2011 Todd C. Miller <Todd.Miller@courtesan.com> * Copyright (c) 2007-2008, 2010-2012 Todd C. Miller <Todd.Miller@courtesan.com>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 32 Line 32
 #include "missing.h"  #include "missing.h"
 #include "list.h"  #include "list.h"
 #ifdef DEBUG  #ifdef DEBUG
# include "error.h"# include "fatal.h"
 #endif  #endif
   
 struct list_proto {  struct list_proto {
Line 81  list2tq(void *vh, void *vl) Line 81  list2tq(void *vh, void *vl)
     if (l != NULL) {      if (l != NULL) {
 #ifdef DEBUG  #ifdef DEBUG
         if (l->prev == NULL) {          if (l->prev == NULL) {
            warningx("list2tq called with non-semicircular list");            warningx_nodebug("list2tq called with non-semicircular list");
             abort();              abort();
         }          }
 #endif  #endif

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.4


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>