Deleted Added
full compact
vipw.c (102234) vipw.c (114601)
1/*
2 * Copyright (c) 1987, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 2002 Networks Associates Technology, Inc.
5 * All rights reserved.
6 *
7 * Portions of this software were developed for the FreeBSD Project by
8 * ThinkSec AS and NAI Labs, the Security Research Division of Network

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

33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * SUCH DAMAGE.
39 */
40
1/*
2 * Copyright (c) 1987, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 2002 Networks Associates Technology, Inc.
5 * All rights reserved.
6 *
7 * Portions of this software were developed for the FreeBSD Project by
8 * ThinkSec AS and NAI Labs, the Security Research Division of Network

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

33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * SUCH DAMAGE.
39 */
40
41#if 0
41#ifndef lint
42static const char copyright[] =
43"@(#) Copyright (c) 1987, 1993, 1994\n\
44 The Regents of the University of California. All rights reserved.\n";
45#endif /* not lint */
46
47#ifndef lint
42#ifndef lint
43static const char copyright[] =
44"@(#) Copyright (c) 1987, 1993, 1994\n\
45 The Regents of the University of California. All rights reserved.\n";
46#endif /* not lint */
47
48#ifndef lint
48#if 0
49static char sccsid[] = "@(#)vipw.c 8.3 (Berkeley) 4/2/94";
49static char sccsid[] = "@(#)vipw.c 8.3 (Berkeley) 4/2/94";
50#endif
51static const char rcsid[] =
52 "$FreeBSD: head/usr.sbin/vipw/vipw.c 102234 2002-08-21 19:01:50Z imp $";
53#endif /* not lint */
50#endif /* not lint */
51#endif
52#include <sys/cdefs.h>
53__FBSDID("$FreeBSD: head/usr.sbin/vipw/vipw.c 114601 2003-05-03 21:06:42Z obrien $");
54
55#include <sys/types.h>
56#include <sys/stat.h>
57
58#include <err.h>
59#include <pwd.h>
60#include <stdio.h>
61#include <stdlib.h>

--- 80 unchanged lines hidden ---
54
55#include <sys/types.h>
56#include <sys/stat.h>
57
58#include <err.h>
59#include <pwd.h>
60#include <stdio.h>
61#include <stdlib.h>

--- 80 unchanged lines hidden ---