summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsobomax <sobomax@FreeBSD.org>2001-05-17 10:12:45 +0000
committersobomax <sobomax@FreeBSD.org>2001-05-17 10:12:45 +0000
commitd5e6fbaada3cd9330c6243dac29fae582561a1f4 (patch)
treeb15f79c8749cbd951340ed2e0260441657c84a7c
parentba39ea389307cc53bf53f9cbdb7bed3753940492 (diff)
downloadFreeBSD-src-d5e6fbaada3cd9330c6243dac29fae582561a1f4.zip
FreeBSD-src-d5e6fbaada3cd9330c6243dac29fae582561a1f4.tar.gz
Style policy: reformat multiline comments to conform to style(9).
-rw-r--r--usr.sbin/pkg_install/add/perform.c8
-rw-r--r--usr.sbin/pkg_install/create/perform.c6
-rw-r--r--usr.sbin/pkg_install/create/pl.c32
-rw-r--r--usr.sbin/pkg_install/delete/perform.c9
-rw-r--r--usr.sbin/pkg_install/lib/file.c26
-rw-r--r--usr.sbin/pkg_install/sign/extern.h9
-rw-r--r--usr.sbin/pkg_install/sign/gzip.c5
-rw-r--r--usr.sbin/pkg_install/sign/gzip.h13
-rw-r--r--usr.sbin/pkg_install/sign/pgp_sign.c10
-rw-r--r--usr.sbin/pkg_install/sign/sha1.c11
10 files changed, 83 insertions, 46 deletions
diff --git a/usr.sbin/pkg_install/add/perform.c b/usr.sbin/pkg_install/add/perform.c
index f53f3cd..ad5e2f0 100644
--- a/usr.sbin/pkg_install/add/perform.c
+++ b/usr.sbin/pkg_install/add/perform.c
@@ -117,7 +117,10 @@ pkg_do(char *pkg)
fclose(cfile);
}
else {
- strcpy(pkg_fullname, pkg); /* copy for sanity's sake, could remove pkg_fullname */
+ strcpy(pkg_fullname, pkg); /*
+ * Copy for sanity's sake,
+ * could remove pkg_fullname
+ */
if (strcmp(pkg, "-")) {
if (stat(pkg_fullname, &sb) == FAIL) {
warnx("can't stat package file '%s'", pkg_fullname);
@@ -324,7 +327,8 @@ pkg_do(char *pkg)
}
}
- /* Test whether to use the old method of passing tokens to installation
+ /*
+ * Test whether to use the old method of passing tokens to installation
* scripts, and set appropriate variables..
*/
diff --git a/usr.sbin/pkg_install/create/perform.c b/usr.sbin/pkg_install/create/perform.c
index 8d073e4..0c32ea6 100644
--- a/usr.sbin/pkg_install/create/perform.c
+++ b/usr.sbin/pkg_install/create/perform.c
@@ -173,8 +173,10 @@ pkg_perform(char **pkgs)
/* Make first "real contents" pass over it */
check_list(home, &plist);
- (void) umask(022); /* make sure gen'ed directories, files don't have
- group or other write bits. */
+ (void) umask(022); /*
+ * Make sure gen'ed directories, files don't have
+ * group or other write bits.
+ */
/* copy_plist(home, &plist); */
/* mark_plist(&plist); */
diff --git a/usr.sbin/pkg_install/create/pl.c b/usr.sbin/pkg_install/create/pl.c
index fc65560..3684def 100644
--- a/usr.sbin/pkg_install/create/pl.c
+++ b/usr.sbin/pkg_install/create/pl.c
@@ -116,8 +116,10 @@ copy_plist(char *home, Package *plist)
dev_t curdir;
maxargs = sysconf(_SC_ARG_MAX);
- maxargs -= 64; /* some slop for the tar cmd text,
- and sh -c */
+ maxargs -= 64; /*
+ * Some slop for the tar cmd text,
+ * and sh -c
+ */
where_args = malloc(maxargs);
if (!where_args) {
cleanup(0);
@@ -132,9 +134,11 @@ copy_plist(char *home, Package *plist)
if (stat(".", &stb) == 0)
curdir = stb.st_dev;
else
- curdir = (dev_t) -1; /* It's ok if this is a valid dev_t;
- this is just a hint for an
- optimization. */
+ curdir = (dev_t) -1; /*
+ * It's ok if this is a valid dev_t;
+ * this is just a hint for an
+ * optimization.
+ */
while (p) {
if (p->type == PLIST_CWD)
@@ -152,11 +156,15 @@ copy_plist(char *home, Package *plist)
if (fexists(fn)) {
if (lstat(fn, &stb) == 0 && stb.st_dev == curdir &&
S_ISREG(stb.st_mode)) {
- /* if we can link it to the playpen, that avoids a copy
- and saves time. */
+ /*
+ * If we can link it to the playpen, that avoids a copy
+ * and saves time.
+ */
if (p->name[0] != '/') {
- /* don't link abspn stuff--it doesn't come from
- local dir! */
+ /*
+ * Don't link abspn stuff--it doesn't come from
+ * local dir!
+ */
if (trylink(fn, p->name) == 0) {
p = p->next;
continue;
@@ -198,8 +206,10 @@ copy_plist(char *home, Package *plist)
sprintf(fn, "%s/%s", mythere ? mythere : where, p->name);
if (lstat(fn, &stb) == 0 && stb.st_dev == curdir &&
S_ISREG(stb.st_mode)) {
- /* if we can link it to the playpen, that avoids a copy
- and saves time. */
+ /*
+ * If we can link it to the playpen, that avoids a copy
+ * and saves time.
+ */
if (trylink(fn, p->name) == 0) {
p = p->next;
continue;
diff --git a/usr.sbin/pkg_install/delete/perform.c b/usr.sbin/pkg_install/delete/perform.c
index 120622c..3a9ec87 100644
--- a/usr.sbin/pkg_install/delete/perform.c
+++ b/usr.sbin/pkg_install/delete/perform.c
@@ -178,7 +178,8 @@ pkg_do(char *pkg)
}
}
- /* Test whether to use the old method of passing tokens to deinstallation
+ /*
+ * Test whether to use the old method of passing tokens to deinstallation
* scripts, and set appropriate variables..
*/
@@ -213,8 +214,10 @@ pkg_do(char *pkg)
errx(2, __FUNCTION__ ": unable to return to working directory %s!", home);
}
- /* Some packages aren't packed right, so we need to just ignore
- delete_package()'s status. Ugh! :-( */
+ /*
+ * Some packages aren't packed right, so we need to just ignore
+ * delete_package()'s status. Ugh! :-(
+ */
if (delete_package(FALSE, CleanDirs, &Plist) == FAIL)
warnx(
"couldn't entirely delete package (perhaps the packing list is\n"
diff --git a/usr.sbin/pkg_install/lib/file.c b/usr.sbin/pkg_install/lib/file.c
index 7817fc8..baf65b1 100644
--- a/usr.sbin/pkg_install/lib/file.c
+++ b/usr.sbin/pkg_install/lib/file.c
@@ -158,12 +158,17 @@ fileGetURL(char *base, char *spec)
if (!isURL(spec)) {
if (!base && !hint)
return NULL;
- /* We've been given an existing URL (that's known-good) and now we need
- to construct a composite one out of that and the basename we were
- handed as a dependency. */
+ /*
+ * We've been given an existing URL (that's known-good) and now we need
+ * to construct a composite one out of that and the basename we were
+ * handed as a dependency.
+ */
if (base) {
strcpy(fname, base);
- /* Advance back two slashes to get to the root of the package hierarchy */
+ /*
+ * Advance back two slashes to get to the root of the package
+ * hierarchy
+ */
cp = strrchr(fname, '/');
if (cp) {
*cp = '\0'; /* chop name */
@@ -179,7 +184,10 @@ fileGetURL(char *base, char *spec)
return NULL;
}
else {
- /* Otherwise, we've been given an environment variable hinting at the right location from sysinstall */
+ /*
+ * Otherwise, we've been given an environment variable hinting
+ * at the right location from sysinstall
+ */
strcpy(fname, hint);
strcat(fname, spec);
strcat(fname, ".tgz");
@@ -312,8 +320,9 @@ fileGetContents(char *fname)
return contents;
}
-/* Takes a filename and package name, returning (in "try") the canonical "preserve"
- * name for it.
+/*
+ * Takes a filename and package name, returning (in "try") the
+ * canonical "preserve" name for it.
*/
Boolean
make_preserve_name(char *try, int max, char *name, char *file)
@@ -464,7 +473,8 @@ unpack(char *pkg, char *flist)
return 0;
}
-/* Using fmt, replace all instances of:
+/*
+ * Using fmt, replace all instances of:
*
* %F With the parameter "name"
* %D With the parameter "dir"
diff --git a/usr.sbin/pkg_install/sign/extern.h b/usr.sbin/pkg_install/sign/extern.h
index 760d39c..e7c0076 100644
--- a/usr.sbin/pkg_install/sign/extern.h
+++ b/usr.sbin/pkg_install/sign/extern.h
@@ -29,10 +29,11 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* Convention: all functions that operate on a FILE * also take a filename
- for diagnostic purposes. The file can be connected to a pipe, so
- - don't rewind
- - don't reopen from filename.
+/*
+ * Convention: all functions that operate on a FILE * also take a filename
+ * for diagnostic purposes. The file can be connected to a pipe, so
+ * - don't rewind
+ * - don't reopen from filename.
*/
struct mygzip_header;
diff --git a/usr.sbin/pkg_install/sign/gzip.c b/usr.sbin/pkg_install/sign/gzip.c
index 4150bcc..89cdb9c 100644
--- a/usr.sbin/pkg_install/sign/gzip.c
+++ b/usr.sbin/pkg_install/sign/gzip.c
@@ -38,8 +38,9 @@
#include "gzip.h"
#include "pgp.h"
-/* Signatures follow a simple format
- (endianess was chosen to conform to gzip header format)
+/*
+ * Signatures follow a simple format
+ * (endianess was chosen to conform to gzip header format)
*/
SIGNTAG known_tags[KNOWN_TAGS] = {
diff --git a/usr.sbin/pkg_install/sign/gzip.h b/usr.sbin/pkg_install/sign/gzip.h
index bc64aab..238010f 100644
--- a/usr.sbin/pkg_install/sign/gzip.h
+++ b/usr.sbin/pkg_install/sign/gzip.h
@@ -35,9 +35,10 @@
#define CONTINUATION 0x02
#define EXTRA_FIELD 0x04
-/* meaningful fields in a gzip header, see gzip proper for details.
- This structure should not be fiddled with outside of gzip_read_header
- and gzip_write_header
+/*
+ * Meaningful fields in a gzip header, see gzip proper for details.
+ * This structure should not be fiddled with outside of gzip_read_header
+ * and gzip_write_header
*/
struct mygzip_header {
char method;
@@ -72,8 +73,10 @@ extern int gzip_read_header __P((FILE *f, /*@out@*/struct mygzip_header *h, \
/* gzip_write_header returns 1 for success */
extern int gzip_write_header __P((FILE *f, const struct mygzip_header *h, \
/*@null@*/struct signature *sign));
-/* writing header to memory. Returns size needed, or 0 if buffer too small
- buffer must be at least 14 characters */
+/*
+ * Writing header to memory. Returns size needed, or 0 if buffer too small
+ * buffer must be at least 14 characters
+ */
extern int gzip_copy_header __P((const struct mygzip_header *h, \
/*@null@*/struct signature *sign, \
void (*add)(void *, const char *, size_t), void *data));
diff --git a/usr.sbin/pkg_install/sign/pgp_sign.c b/usr.sbin/pkg_install/sign/pgp_sign.c
index 1fada95..a9bd795 100644
--- a/usr.sbin/pkg_install/sign/pgp_sign.c
+++ b/usr.sbin/pkg_install/sign/pgp_sign.c
@@ -235,8 +235,9 @@ return;
/* Retrieve the pgp passphrase */
p = getpass("Enter passphrase:");
- /* somewhat kludgy code to get the passphrase to pgp, see
- pgp documentation for the gore
+ /*
+ * Somewhat kludgy code to get the passphrase to pgp, see
+ * pgp documentation for the gore
*/
if (pipe(fd) != 0) {
perror("pkg_sign");
@@ -249,8 +250,9 @@ return;
case 0:
{
(void)close(fd[0]);
- /* the child fills the pipe with copies of the passphrase.
- Expect violent death when father exits.
+ /*
+ * The child fills the pipe with copies of the passphrase.
+ * Expect violent death when father exits.
*/
printf("Child process %d stuffing passphrase in pipe:\n", getpid());
for(;;) {
diff --git a/usr.sbin/pkg_install/sign/sha1.c b/usr.sbin/pkg_install/sign/sha1.c
index c16eb02..a8a23ce 100644
--- a/usr.sbin/pkg_install/sign/sha1.c
+++ b/usr.sbin/pkg_install/sign/sha1.c
@@ -50,11 +50,12 @@ struct sha1_checker {
#define SHA1_TEMPLATE "SHA1 (%s) = "
#define BUFSIZE (MAXID+sizeof(SHA1_TEMPLATE)+2*SHA_DIGEST_LENGTH+1)
-/* Finalize SHA1 checksum for our sha1_context into result
- (size at least BUFSIZE). Returns the length of the checksum
- marker, e.g., SHA1 (id) = xxxxxxxxx
- ^here
- Return 0 for errors.
+/*
+ * Finalize SHA1 checksum for our sha1_context into result
+ * (size at least BUFSIZE). Returns the length of the checksum
+ * marker, e.g., SHA1 (id) = xxxxxxxxx
+ * ^here
+ * Return 0 for errors.
*/
size_t
sha1_build_checksum(result, n)
OpenPOWER on IntegriCloud