From b1ffacddfc2f558ad150d05a79318b7e58c572b2 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Wed, 12 May 2004 13:38:49 +0000 Subject: Rename find_my_binary/find_other_binary to find_my_exec/find_other_exec(). Remove passing of progname to these functions as they can find that out from argv[0], which they already have. Make get_progname return const char *, and update all progname variables to be const char *. --- src/bin/scripts/createlang.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/bin/scripts/createlang.c') diff --git a/src/bin/scripts/createlang.c b/src/bin/scripts/createlang.c index 64e257bc2f0..f75e9e07cdd 100644 --- a/src/bin/scripts/createlang.c +++ b/src/bin/scripts/createlang.c @@ -5,7 +5,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/bin/scripts/createlang.c,v 1.8 2004/03/19 18:58:07 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/scripts/createlang.c,v 1.9 2004/05/12 13:38:47 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -33,7 +33,7 @@ main(int argc, char *argv[]) {NULL, 0, NULL, 0} }; - char *progname; + const char *progname; int optindex; int c; -- cgit v1.2.3