diff options
author | jb <jb@FreeBSD.org> | 1998-08-30 20:40:29 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-08-30 20:40:29 +0000 |
commit | 44d03426b1ce7b5fe9c637f9de99ae7adac55b1b (patch) | |
tree | 8ecb18ae05f19bf97e1abf32a60a8e8fc009bd93 /usr.bin/objformat | |
parent | 3ec882f890162cf9723d586e919054355a55ead7 (diff) | |
download | FreeBSD-src-44d03426b1ce7b5fe9c637f9de99ae7adac55b1b.zip FreeBSD-src-44d03426b1ce7b5fe9c637f9de99ae7adac55b1b.tar.gz |
Change /etc/objectformat to /etc/objformat. Last chance 'cause it's E-day.
Suggested by: jdp
Diffstat (limited to 'usr.bin/objformat')
-rw-r--r-- | usr.bin/objformat/objformat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/objformat/objformat.c b/usr.bin/objformat/objformat.c index 92440d6..827af6e 100644 --- a/usr.bin/objformat/objformat.c +++ b/usr.bin/objformat/objformat.c @@ -45,8 +45,8 @@ getobjfmt(void) char *env; int i; - /* first hint is /etc/objectformat */ - FILE *fp = fopen("/etc/objectformat", "r"); + /* first hint is /etc/objformat */ + FILE *fp = fopen("/etc/objformat", "r"); if (fp) { char buf[1024]; buf[1023] = '\0'; @@ -59,7 +59,7 @@ getobjfmt(void) else if (strcmp(buf, "OBJFORMAT=elf") == 0) objformat_aout = 0; else - fprintf(stderr, "Unrecognized line in /etc/objectformat: %s\n", buf); + fprintf(stderr, "Unrecognized line in /etc/objformat: %s\n", buf); } fclose(fp); } |