Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/distrib/utils/sysinst fix previous; target_prefix() returns ...



details:   https://anonhg.NetBSD.org/src/rev/be6f04d88763
branches:  trunk
changeset: 543255:be6f04d88763
user:      lukem <lukem%NetBSD.org@localhost>
date:      Thu Feb 20 22:21:25 2003 +0000

description:
fix previous; target_prefix() returns const char *, not char *.

diffstat:

 distrib/utils/sysinst/util.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 6fcee14cf035 -r be6f04d88763 distrib/utils/sysinst/util.c
--- a/distrib/utils/sysinst/util.c      Thu Feb 20 22:16:05 2003 +0000
+++ b/distrib/utils/sysinst/util.c      Thu Feb 20 22:21:25 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: util.c,v 1.86 2003/02/20 12:02:56 lukem Exp $  */
+/*     $NetBSD: util.c,v 1.87 2003/02/20 22:21:25 lukem Exp $  */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -576,7 +576,7 @@
 {
        char file_path[MAXPATHLEN];
        char file_name[MAXPATHLEN];
-       char *file_prefix;
+       const char *file_prefix;
        FILE *list_file;
        struct filelist *head = NULL;
        struct filelist *current;



Home | Main Index | Thread Index | Old Index