Deleted Added
full compact
pl.c (154102) pl.c (207113)
1/*
2 * FreeBSD install - a package for the installation and maintainance
3 * of non-core utilities.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

14 * Jordan K. Hubbard
15 * 18 July 1993
16 *
17 * Routines for dealing with the packing list.
18 *
19 */
20
21#include <sys/cdefs.h>
1/*
2 * FreeBSD install - a package for the installation and maintainance
3 * of non-core utilities.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

14 * Jordan K. Hubbard
15 * 18 July 1993
16 *
17 * Routines for dealing with the packing list.
18 *
19 */
20
21#include <sys/cdefs.h>
22__FBSDID("$FreeBSD: head/usr.sbin/pkg_install/create/pl.c 154102 2006-01-07 22:10:58Z krion $");
22__FBSDID("$FreeBSD: head/usr.sbin/pkg_install/create/pl.c 207113 2010-04-23 11:07:43Z flz $");
23
23
24#include "lib.h"
24#include <pkg.h>
25#include "create.h"
26#include <errno.h>
27#include <err.h>
28#include <md5.h>
29
30/* Add an MD5 checksum entry for a file or link */
31void
32add_cksum(Package *pkg, PackingList p, const char *fname)

--- 248 unchanged lines hidden ---
25#include "create.h"
26#include <errno.h>
27#include <err.h>
28#include <md5.h>
29
30/* Add an MD5 checksum entry for a file or link */
31void
32add_cksum(Package *pkg, PackingList p, const char *fname)

--- 248 unchanged lines hidden ---