Page MenuHomeFreeBSD

D5946.diff
No OneTemporary

D5946.diff

Index: head/usr.sbin/config/mkmakefile.c
===================================================================
--- head/usr.sbin/config/mkmakefile.c
+++ head/usr.sbin/config/mkmakefile.c
@@ -111,11 +111,11 @@
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 @@
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 @@
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 @@
(void) fclose(fp);
return;
}
- if (wd == 0)
+ if (wd == NULL)
goto next;
if (wd[0] == '#')
{
@@ -340,7 +340,7 @@
}
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 @@
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 @@
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 @@
}
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 @@
}
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 @@
}
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 @@
}
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 @@
}
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 @@
char *cp;
cp = strrchr(fn, '/');
- if (cp == 0)
+ if (cp == NULL)
return (fn);
return (cp+1);
}
@@ -707,7 +707,7 @@
}
}
compilewith = ftp->f_compilewith;
- if (compilewith == 0) {
+ if (compilewith == NULL) {
const char *ftype = NULL;
switch (ftp->f_type) {
Index: head/usr.sbin/config/mkoptions.c
===================================================================
--- head/usr.sbin/config/mkoptions.c
+++ head/usr.sbin/config/mkoptions.c
@@ -172,9 +172,9 @@
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 @@
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 @@
}
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 @@
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 @@
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);

File Metadata

Mime Type
text/plain
Expires
Sun, Feb 1, 1:23 PM (3 h, 28 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
28375827
Default Alt Text
D5946.diff (5 KB)

Event Timeline