From owner-svn-src-head@freebsd.org Wed Apr 27 03:06:54 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8718CB1D9CC; Wed, 27 Apr 2016 03:06:54 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 423691485; Wed, 27 Apr 2016 03:06:54 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3R36rrT058242; Wed, 27 Apr 2016 03:06:53 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3R36rcM058240; Wed, 27 Apr 2016 03:06:53 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201604270306.u3R36rcM058240@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Wed, 27 Apr 2016 03:06:53 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r298687 - head/usr.sbin/config X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2016 03:06:54 -0000 Author: araujo Date: Wed Apr 27 03:06:53 2016 New Revision: 298687 URL: https://svnweb.freebsd.org/changeset/base/298687 Log: For pointers use NULL instead of 0. Reviewed by: rpaulo MFC after: 2 weeks. Differential Revision: https://reviews.freebsd.org/D5946 Modified: head/usr.sbin/config/mkmakefile.c head/usr.sbin/config/mkoptions.c Modified: head/usr.sbin/config/mkmakefile.c ============================================================================== --- head/usr.sbin/config/mkmakefile.c Wed Apr 27 02:44:10 2016 (r298686) +++ head/usr.sbin/config/mkmakefile.c Wed Apr 27 03:06:53 2016 (r298687) @@ -111,11 +111,11 @@ open_makefile_template(void) snprintf(line, sizeof(line), "../../conf/Makefile.%s", machinename); ifp = fopen(line, "r"); - if (ifp == 0) { + if (ifp == NULL) { snprintf(line, sizeof(line), "Makefile.%s", machinename); ifp = fopen(line, "r"); } - if (ifp == 0) + if (ifp == NULL) err(1, "%s", line); return (ifp); } @@ -133,7 +133,7 @@ makefile(void) read_files(); ifp = open_makefile_template(); ofp = fopen(path("Makefile.new"), "w"); - if (ofp == 0) + if (ofp == NULL) err(1, "%s", path("Makefile.new")); fprintf(ofp, "KERN_IDENT=%s\n", ident); fprintf(ofp, "MACHINE=%s\n", machinename); @@ -313,7 +313,7 @@ read_file(char *fname) imp_rule, no_obj, before_depend, nowerror; fp = fopen(fname, "r"); - if (fp == 0) + if (fp == NULL) err(1, "%s", fname); next: /* @@ -330,7 +330,7 @@ next: (void) fclose(fp); return; } - if (wd == 0) + if (wd == NULL) goto next; if (wd[0] == '#') { @@ -340,7 +340,7 @@ next: } if (eq(wd, "include")) { wd = get_quoted_word(fp); - if (wd == (char *)EOF || wd == 0) + if (wd == (char *)EOF || wd == NULL) errout("%s: missing include filename.\n", fname); (void) snprintf(ifname, sizeof(ifname), "../../%s", wd); read_file(ifname); @@ -352,7 +352,7 @@ next: wd = get_word(fp); if (wd == (char *)EOF) return; - if (wd == 0) + if (wd == NULL) errout("%s: No type for %s.\n", fname, this); tp = fl_lookup(this); compile = 0; @@ -396,7 +396,7 @@ next: continue; } if (eq(wd, "no-implicit-rule")) { - if (compilewith == 0) + if (compilewith == NULL) errout("%s: alternate rule required when " "\"no-implicit-rule\" is specified for" " %s.\n", @@ -410,7 +410,7 @@ next: } if (eq(wd, "dependency")) { wd = get_quoted_word(fp); - if (wd == (char *)EOF || wd == 0) + if (wd == (char *)EOF || wd == NULL) errout("%s: %s missing dependency string.\n", fname, this); depends = ns(wd); @@ -418,7 +418,7 @@ next: } if (eq(wd, "clean")) { wd = get_quoted_word(fp); - if (wd == (char *)EOF || wd == 0) + if (wd == (char *)EOF || wd == NULL) errout("%s: %s missing clean file list.\n", fname, this); clean = ns(wd); @@ -426,7 +426,7 @@ next: } if (eq(wd, "compile-with")) { wd = get_quoted_word(fp); - if (wd == (char *)EOF || wd == 0) + if (wd == (char *)EOF || wd == NULL) errout("%s: %s missing compile command string.\n", fname, this); compilewith = ns(wd); @@ -434,7 +434,7 @@ next: } if (eq(wd, "warning")) { wd = get_quoted_word(fp); - if (wd == (char *)EOF || wd == 0) + if (wd == (char *)EOF || wd == NULL) errout("%s: %s missing warning text string.\n", fname, this); warning = ns(wd); @@ -442,7 +442,7 @@ next: } if (eq(wd, "obj-prefix")) { wd = get_quoted_word(fp); - if (wd == (char *)EOF || wd == 0) + if (wd == (char *)EOF || wd == NULL) errout("%s: %s missing object prefix string.\n", fname, this); objprefix = ns(wd); @@ -653,7 +653,7 @@ tail(char *fn) char *cp; cp = strrchr(fn, '/'); - if (cp == 0) + if (cp == NULL) return (fn); return (cp+1); } @@ -707,7 +707,7 @@ do_rules(FILE *f) } } compilewith = ftp->f_compilewith; - if (compilewith == 0) { + if (compilewith == NULL) { const char *ftype = NULL; switch (ftp->f_type) { Modified: head/usr.sbin/config/mkoptions.c ============================================================================== --- head/usr.sbin/config/mkoptions.c Wed Apr 27 02:44:10 2016 (r298686) +++ head/usr.sbin/config/mkoptions.c Wed Apr 27 03:06:53 2016 (r298687) @@ -172,9 +172,9 @@ do_option(char *name) remember(file); inf = fopen(file, "r"); - if (inf == 0) { + if (inf == NULL) { outf = fopen(file, "w"); - if (outf == 0) + if (outf == NULL) err(1, "%s", file); /* was the option in the config file? */ @@ -200,14 +200,14 @@ do_option(char *name) char *invalue; /* get the #define */ - if ((inw = get_word(inf)) == 0 || inw == (char *)EOF) + if ((inw = get_word(inf)) == NULL || inw == (char *)EOF) break; /* get the option name */ - if ((inw = get_word(inf)) == 0 || inw == (char *)EOF) + if ((inw = get_word(inf)) == NULL || inw == (char *)EOF) break; inw = ns(inw); /* get the option value */ - if ((cp = get_word(inf)) == 0 || cp == (char *)EOF) + if ((cp = get_word(inf)) == NULL || cp == (char *)EOF) break; /* option value */ invalue = ns(cp); /* malloced */ @@ -267,7 +267,7 @@ do_option(char *name) } outf = fopen(file, "w"); - if (outf == 0) + if (outf == NULL) err(1, "%s", file); while (!SLIST_EMPTY(&op_head)) { op = SLIST_FIRST(&op_head); @@ -366,10 +366,10 @@ read_option_file(const char *fname, int char genopt[MAXPATHLEN]; fp = fopen(fname, "r"); - if (fp == 0) + if (fp == NULL) return (0); while ((wd = get_word(fp)) != (char *)EOF) { - if (wd == 0) + if (wd == NULL) continue; if (wd[0] == '#') { while (((wd = get_word(fp)) != (char *)EOF) && wd) @@ -380,7 +380,7 @@ read_option_file(const char *fname, int val = get_word(fp); if (val == (char *)EOF) return (1); - if (val == 0) { + if (val == NULL) { if (flags) { fprintf(stderr, "%s: compat file requires two" " words per line at %s\n", fname, this);