Symbol: fdopen
bin/ed/buf.c
208
(sfp = fdopen(fd, "w+")) == NULL) {
bin/ksh/history.c
736
if ((f = fdopen(fddup, "r+")) == NULL)
bin/pax/tty_subs.c
68
if ((ttyoutf = fdopen(ttyfd, "w")) != NULL) {
bin/pax/tty_subs.c
69
if ((ttyinf = fdopen(ttyfd, "r")) != NULL)
games/atc/log.c
129
score_fp = fdopen(score_fd, "r+");
games/fortune/fortune/fortune.c
933
if (fp->inf == NULL && (fp->inf = fdopen(fp->fd, "r")) == NULL) {
games/hunt/huntd/answer.c
206
conn = fdopen(sp->fd, "w");
games/hunt/huntd/driver.c
1005
fp = fdopen(s, "w");
games/hunt/huntd/driver.c
1075
fp = fdopen(tty, "w");
games/snake/snake.c
979
if ((sf = fdopen(rawscores, modstr)) == NULL)
games/tetris/scores.c
117
if ((sf = fdopen(sd, mstr)) == NULL)
include/stdio.h
231
FILE *fdopen(int, const char *);
lib/libc/asr/asr.c
750
cf = fdopen(fd, "r");
lib/libc/asr/getaddrinfo_async.c
401
f = fdopen(fd, "r");
lib/libc/asr/gethostnamadr_async.c
293
if ((f = fdopen(fd, "r")) == NULL) {
lib/libc/db/recno/rec_open.c
127
slow: if ((t->bt_rfp = fdopen(rfd, "r")) == NULL)
lib/libc/gen/getgrent.c
219
if ((_gr_fp = fdopen(fd, "r")) == NULL)
lib/libc/gen/getgrouplist.c
122
fp = fdopen(fd, "r");
lib/libc/gen/popen.c
119
iop = fdopen(pdes[target], type);
lib/libc/hidden/stdio.h
54
PROTO_NORMAL(fdopen);
lib/libc/net/getprotoent.c
49
pd->fp = fdopen(fd, "r" );
lib/libc/net/getservent.c
49
sd->fp = fdopen(fd, "r" );
lib/libc/net/getservent.c
86
if ((sd->fp = fdopen(fd, "r" )) == NULL) {
lib/libc/stdio/fdopen.c
86
DEF_WEAK(fdopen);
lib/libc/stdio/tmpfile.c
62
if ((fp = fdopen(fd, "w+")) == NULL) {
lib/libcrypto/rand/randfile.c
111
out = fdopen(fd, "wb");
lib/libcurses/base/lib_initscr.c
91
stdout = fdopen(STDOUT_FILENO, "w");
lib/libcurses/trace/lib_trace.c
144
MyFP = fdopen(MyFD, BIN_W);
lib/libcurses/trace/lib_trace.c
162
|| (MyFP = fdopen(MyFD, BIN_W)) == 0) {
lib/libedit/readline.c
1208
if ((tp = fdopen(fd, "r+")) == NULL) {
lib/libexpat/tests/benchmark/benchmark.c
107
file = fdopen(fd, "r");
lib/libskey/skeylogin.c
136
(keyfile = fdopen(fd, "r+")) == NULL) {
lib/libtls/tls_util.c
185
if ((fp = fdopen(fd, "r")) == NULL)
lib/libutil/passwd.c
327
if (!(from = fdopen(ffd, "re")))
lib/libutil/passwd.c
329
if (!(to = fdopen(tfd, "we")))
libexec/comsat/comsat.c
272
if (fd == -1 || (tp = fdopen(fd, "w")) == NULL) {
libexec/fingerd/fingerd.c
220
if (!(fp = fdopen(p[0], "r")))
libexec/ftpd/ftpd.c
1206
fout = fdopen(fd, mode);
libexec/ftpd/ftpd.c
1273
return (fdopen(data, mode));
libexec/ftpd/ftpd.c
1321
return (fdopen(s, mode));
libexec/ftpd/ftpd.c
1406
return (fdopen(pdata, mode));
libexec/ftpd/ftpd.c
1412
return (fdopen(data, mode));
libexec/ftpd/popen.c
122
iop = fdopen(pdes[0], "r");
libexec/login_ldap/login_ldap.c
130
if (back == NULL && (back = fdopen(3, "a")) == NULL) {
libexec/login_passwd/login_passwd.c
117
if (back == NULL && (back = fdopen(3, "r+")) == NULL) {
libexec/login_radius/login_radius.c
157
if (back == NULL && (back = fdopen(3, "a")) == NULL) {
libexec/login_reject/login_reject.c
98
if (!(back = fdopen(3, "r+"))) {
libexec/login_skey/login_skey.c
122
if (back == NULL && (back = fdopen(3, "r+")) == NULL) {
libexec/login_token/login_token.c
131
if (back == NULL && (back = fdopen(3, "r+")) == NULL) {
libexec/login_yubikey/login_yubikey.c
121
if (f == NULL && (f = fdopen(3, "r+")) == NULL) {
libexec/mail.local/mail.local.c
121
if ((fd = mkstemp(tbuf)) == -1 || !(fp = fdopen(fd, "w+")))
libexec/rpc.rusersd/rusers_proc.c
115
ufp = fdopen(fd, "r");
libexec/rpc.rusersd/rusers_proc.c
147
ufp = fdopen(fd, "r");
libexec/rpc.rusersd/rusers_proc.c
211
ufp = fdopen(fd, "r");
libexec/rpc.rusersd/rusers_proc.c
275
ufp = fdopen(fd, "r");
libexec/spamd-setup/spamd-setup.c
626
sdc = fdopen(s, "w");
libexec/spamd-setup/spamd-setup.c
676
pf = fdopen(pdes[1], "w");
libexec/spamd/grey.c
205
pf = fdopen(pdes[1], "w");
libexec/spamd/spamd.c
1497
grey = fdopen(greypipe[1], "w");
libexec/spamd/spamd.c
1505
trapcfg = fdopen(trappipe[0], "r");
libexec/spamd/spamd.c
1521
grey = fdopen(greypipe[0], "r");
libexec/spamd/spamd.c
1527
trapcfg = fdopen(trappipe[1], "w");
regress/lib/csu/callbacks/pthread_atfork/pthread_atfork_test.c
92
otherf = fdopen(3, "w");
regress/lib/libc/fread/fread.c
98
if ((fp = fdopen(sv[0], "r")) == NULL)
regress/lib/libc/orientation/orientation_test.c
126
if ((dup_stdout = fdopen(fd, "w")) == NULL)
regress/lib/libc/stdio_threading/fgetln/fgetln_test.c
51
(sfp = fdopen(fd, "w+")) == NULL) {
regress/lib/libc/stdio_threading/fgets/fgets_test.c
50
(sfp = fdopen(fd, "w+")) == NULL) {
regress/lib/libc/stdio_threading/fputs/fputs_test.c
48
(sfp = fdopen(fd, "w+")) == NULL) {
regress/lib/libc/stdio_threading/fread/fread_test.c
52
(sfp = fdopen(fd, "w+")) == NULL) {
regress/lib/libc/stdio_threading/fwrite/fwrite_test.c
48
(sfp = fdopen(fd, "w+")) == NULL) {
regress/lib/libcrypto/test/test.c
77
if ((t->out = fdopen(out_fd, "w+")) == NULL)
regress/lib/libz/minigzip.c
192
gz->file = path == NULL ? fdopen(fd, gz->write ? "wb" : "rb") :
regress/sys/net/pf_print/pf_print_test.c
104
if ((fpipe = fdopen(fds[0], "r")) == NULL)
sbin/disklabel/disklabel.c
610
if ((fd = mkstemp(tmpfil)) == -1 || (fp = fdopen(fd, "w")) == NULL) {
sbin/ipsecctl/ike.c
900
if ((fdp = fdopen(fd, "w")) == NULL)
sbin/isakmpd/ike_auth.c
307
if ((keyfp = fdopen(fd, "r")) == NULL) {
sbin/isakmpd/monitor.c
272
fp = fdopen(fd, mode);
sbin/isakmpd/x509.c
650
if ((certfp = fdopen(fd, "r")) == NULL) {
sbin/isakmpd/x509.c
733
if ((crlfp = fdopen(fd, "r")) == NULL) {
sbin/pflogd/pflogd.c
353
fp = fdopen(fd, "a+");
sbin/resolvd/resolvd.c
642
fp = fdopen(fd2, "r");
sbin/restore/dirs.c
150
if (fd == -1 || (df = fdopen(fd, "w")) == NULL) {
sbin/restore/dirs.c
165
if (fd == -1 || (mf = fdopen(fd, "w")) == NULL) {
sbin/savecore/savecore.c
449
fp = fdopen(ofd, "w");
sbin/scsi/scsi.c
564
if ( (edit_file = fdopen(fd, "w+")) == 0)
sbin/unwind/frontend.c
1551
if((f = fdopen(fd, "r")) == NULL) {
usr.bin/at/at.c
225
if ((fp = fdopen(fd, "w")) == NULL)
usr.bin/at/at.c
714
if (i == -1 || (fp = fdopen(i, "r")) == NULL)
usr.bin/cdio/cddb.c
263
cin = fdopen(s, "r");
usr.bin/cdio/cddb.c
269
cout = fdopen(s2, "w");
usr.bin/chpass/edit.c
141
(fp = fdopen(fd, "r")) == NULL)
usr.bin/chpass/edit.c
85
if (!(fp = fdopen(fd, "w")))
usr.bin/cmp/special.c
50
if ((fp1 = fdopen(fd1, "r")) == NULL)
usr.bin/cmp/special.c
52
if ((fp2 = fdopen(fd2, "r")) == NULL)
usr.bin/cvs/client.c
267
if ((current_cvsroot->cr_srvin = fdopen(ifd[1], "w")) == NULL)
usr.bin/cvs/client.c
269
if ((current_cvsroot->cr_srvout = fdopen(ofd[0], "r")) == NULL)
usr.bin/cvs/diff3.c
308
if ((fp[i] = fdopen(fds[i + 2], "r")) == NULL) {
usr.bin/cvs/diff3.c
444
fp[0] = fdopen(fd, "r");
usr.bin/cvs/diff_internals.c
335
f1 = fdopen(fd1, "r");
usr.bin/cvs/diff_internals.c
344
f2 = fdopen(fd2, "r");
usr.bin/cvs/history.c
170
if ((fp = fdopen(fd, "a")) != NULL) {
usr.bin/cvs/logmsg.c
120
if ((fp = fdopen(fd, "w")) == NULL) {
usr.bin/cvs/logmsg.c
143
if ((rp = fdopen(rd, "r")) == NULL)
usr.bin/cvs/logmsg.c
59
if ((fp = fdopen(fd, "r")) == NULL)
usr.bin/cvs/rcs.c
187
else if ((rfp->rf_file = fdopen(fd, "r")) == NULL)
usr.bin/cvs/rcs.c
2117
if ((fp = fdopen(fd, "w")) == NULL)
usr.bin/cvs/rcs.c
311
if ((fp = fdopen(fd, "w")) == NULL) {
usr.bin/cvs/remote.c
194
if ((in = fdopen(fd, "r")) == NULL)
usr.bin/diff/diffreg.c
478
return (fdopen(ofd, "r"));
usr.bin/finger/net.c
120
if ((fp = fdopen(s, "r")) != NULL)
usr.bin/ftp/fetch.c
669
fin = fdopen(fd, "r+");
usr.bin/ftp/fetch.c
673
fin = fdopen(fd, "r+");
usr.bin/ftp/ftp.c
1682
return (fdopen(data, lmode));
usr.bin/ftp/ftp.c
1699
return (fdopen(data, lmode));
usr.bin/ftp/ftp.c
264
cin = fdopen(s, "r");
usr.bin/ftp/ftp.c
265
cout = fdopen(s, "w");
usr.bin/grep/file.c
132
if ((f->f = fdopen(fd, "r")) != NULL)
usr.bin/htpasswd/htpasswd.c
171
if ((out = fdopen(fd, "w+")) == NULL)
usr.bin/lex/filter.c
250
to_c = fdopen(to_cfd, "w");
usr.bin/m4/eval.c
831
(outfile[n] = fdopen(fd, "w+")) == NULL)
usr.bin/mail/lex.c
128
(otf = fdopen(fd, "w")) == NULL)
usr.bin/mail/popen.c
126
if ((fp = fdopen(myside, mode)) != NULL)
usr.bin/mail/popen.c
82
if ((fp = fdopen(fd, mode)) != NULL) {
usr.bin/mandoc/main.c
1094
if ((stream = fdopen(fd, "r")) == NULL) {
usr.bin/mandoc/mandocdb.c
1279
stream = fd == -1 ? fopen(mlink->file, "r") : fdopen(fd, "r");
usr.bin/mandoc/term_tag.c
124
if ((tag_files.tfs = fdopen(tfd, "w")) == NULL) {
usr.bin/mg/dired.c
721
if ((fin = fdopen(fds[0], "r")) == NULL)
usr.bin/mg/fileio.c
115
if ((*ffp = fdopen(fd, "w")) == NULL) {
usr.bin/openssl/speed.c
2777
f = fdopen(fds[n], "r");
usr.bin/rcs/rcs.c
111
else if ((rfp->rf_file = fdopen(fd, "r")) == NULL)
usr.bin/rcs/rcs.c
231
if ((fp = fdopen(fd, "w+")) == NULL) {
usr.bin/rdist/message.c
462
(msgfac->mf_fptr = fdopen(fd, "w")) == NULL)
usr.bin/rpcgen/rpc_main.c
330
fin = fdopen(pd[0], "r");
usr.bin/rwall/rwall.c
115
if ((fd = mkstemp(tmpname)) == -1 || !(fp = fdopen(fd, "r+")))
usr.bin/sdiff/sdiff.c
336
if ((diffpipe = fdopen(fd[0], "r")) == NULL)
usr.bin/sed/main.c
409
if ((outfile = fdopen(fd, "w")) == NULL) {
usr.bin/sendbug/sendbug.c
125
if ((fp = fdopen(fd, "w+")) == NULL)
usr.bin/skeyaudit/skeyaudit.c
242
fp = fdopen(pfd[1], "w");
usr.bin/skeyinit/skeyinit.c
283
(skey.keyfile = fdopen(l, "r+")) == NULL)
usr.bin/split/split.c
226
if ((infp = fdopen(ifd, "r")) == NULL)
usr.bin/ssh/auth-rhosts.c
77
if ((f = fdopen(fd, "r")) == NULL) {
usr.bin/ssh/auth2-pubkeyfile.c
484
if ((f = fdopen(fd, "r")) == NULL) {
usr.bin/ssh/authfile.c
486
if ((f = fdopen(fd, "w")) == NULL) {
usr.bin/ssh/hostfile.c
656
if ((ctx.out = fdopen(fd, "w")) == NULL) {
usr.bin/ssh/misc.c
2878
else if ((f = fdopen(p[0], "r")) == NULL) {
usr.bin/ssh/moduli.c
415
if ((fp = fdopen(r, "w")) == NULL) {
usr.bin/ssh/scp.c
2079
if (fp != NULL || (remout != -1 && (fp = fdopen(remout, "w")))) {
usr.bin/ssh/ssh-keygen.c
1274
if ((ctx.out = fdopen(fd, "w")) == NULL) {
usr.bin/tftp/tftp.c
143
file = fdopen(fd, "r");
usr.bin/tftp/tftp.c
289
file = fdopen(fd, "w");
usr.bin/tic/tic.c
400
result = fdopen(fd, "w");
usr.bin/tmux/popup.c
945
f = fdopen(fd, "w");
usr.bin/unifdef/unifdef.c
1591
return (fdopen(fd, "wb"));
usr.bin/uudecode/uudecode.c
299
(outfp = fdopen(fd, "w")) == NULL) {
usr.bin/vacation/vacation.c
480
sfp = fdopen(pvect[1], "w");
usr.bin/vi/common/exf.c
845
if ((fp = fdopen(fd, LF_ISSET(FS_APPEND) ? "a" : "w")) == NULL) {
usr.bin/vi/common/recover.c
548
if ((fp = fdopen(fd, "r")) == NULL) {
usr.bin/vi/ex/ex_argv.c
617
if ((ifp = fdopen(std_output[0], "r")) == NULL) {
usr.bin/vi/ex/ex_filter.c
124
if ((ofp = fdopen(output[0], "r")) == NULL) {
usr.bin/vi/ex/ex_filter.c
257
if ((ifp = fdopen(input[1], "w")) == NULL)
usr.bin/vi/ex/ex_filter.c
94
if ((ifp = fdopen(fd, "w")) == NULL) {
usr.bin/vi/ex/ex_mkexrc.c
70
if ((fp = fdopen(fd, "w")) == NULL) {
usr.bin/wall/wall.c
191
fp = fdopen(fd, "r+");
usr.bin/wc/wc.c
221
else if ((stream = fdopen(fd, "r")) == NULL) {
usr.bin/whois/whois.c
221
fp = fdopen(s, "r+");
usr.sbin/authpf/authpf.c
220
(pidfp = fdopen(pidfd, "r+")) == NULL) {
usr.sbin/bgpctl/bgpctl.c
1151
if ((f = fdopen(STDIN_FILENO, "r")) == NULL)
usr.sbin/cron/atrun.c
416
if ((fp = fdopen(dup(fd), "r")) == NULL) {
usr.sbin/cron/atrun.c
549
if ((fp = fdopen(output_pipe[READ_PIPE], "r")) == NULL) {
usr.sbin/cron/crontab.c
298
if (!(NewCrontab = fdopen(t, "r+"))) {
usr.sbin/cron/crontab.c
405
if (fd == -1 || !(fp = fdopen(fd, "w+"))) {
usr.sbin/cron/database.c
193
if (!(crontab_fp = fdopen(fd, "r"))) {
usr.sbin/cron/do_command.c
294
FILE *out = fdopen(stdin_pipe[WRITE_PIPE], "w");
usr.sbin/cron/do_command.c
349
in = fdopen(stdout_pipe[READ_PIPE], "r");
usr.sbin/cron/popen.c
124
iop = fdopen(pdes[0], type);
usr.sbin/cron/popen.c
127
iop = fdopen(pdes[1], type);
usr.sbin/crunchgen/crunchgen.c
667
if ((fd = mkstemp(tempfname)) == -1 || (f = fdopen(fd, "w")) == NULL) {
usr.sbin/dhcpd/db.c
202
if ((db_file = fdopen(db_fd, "w")) == NULL)
usr.sbin/edquota/edquota.c
405
if ((fp = fdopen(dup(outfd), "w")) == NULL)
usr.sbin/edquota/edquota.c
436
fp = fdopen(dup(infd), "r");
usr.sbin/edquota/edquota.c
542
if ((fp = fdopen(dup(outfd), "w")) == NULL)
usr.sbin/edquota/edquota.c
574
fp = fdopen(dup(infd), "r");
usr.sbin/kvm_mkdb/nlist.c
78
if ((fp = fdopen(fd, "r")) == NULL)
usr.sbin/lpd/frontend_lpr.c
227
conn->ofp = fdopen(fd, "w");
usr.sbin/lpd/lp.c
499
if ((lp->lp_lock = fdopen(fd, "w")) == NULL) {
usr.sbin/lpd/lp.c
747
fp = fdopen(fd, "w");
usr.sbin/lpd/printer.c
978
if ((fp = fdopen(p[1], "w")) == NULL) {
usr.sbin/lpr/common_source/displayq.c
176
if (fd < 0 || (fp = fdopen(fd, "r")) == NULL) {
usr.sbin/lpr/common_source/displayq.c
356
if (fd < 0 || (cfp = fdopen(fd, "r")) == NULL) {
usr.sbin/lpr/common_source/rmjob.c
170
if (fd < 0 || (fp = fdopen(fd, "r")) == NULL) {
usr.sbin/lpr/common_source/rmjob.c
213
if (fd < 0 || (cfp = fdopen(fd, "r")) == NULL) {
usr.sbin/lpr/common_source/rmjob.c
268
if (fd < 0 || (cfp = fdopen(fd, "r")) == NULL) {
usr.sbin/lpr/lpc/cmds.c
1097
if (fd < 0 || (fp = fdopen(fd, "r")) == NULL) {
usr.sbin/lpr/lpc/cmds.c
161
if (fd < 0 || (fp = fdopen(fd, "r")) == NULL) {
usr.sbin/lpr/lpd/printjob.c
344
if (fd < 0 || (cfp = fdopen(fd, "r")) == NULL) {
usr.sbin/lpr/lpd/printjob.c
805
if (fd < 0 || (cfp = fdopen(fd, "r")) == NULL)
usr.sbin/npppd/npppd/privsep.c
289
if ((fp = fdopen(f, "r")) == NULL) {
usr.sbin/nsd/verify.c
490
if ((fin = fdopen(fdin, "w")) == NULL) {
usr.sbin/ntpd/ntpd.c
575
freqfp = fdopen(fd, "r+");
usr.sbin/pwd_mkdb/pwd_mkdb.c
270
if ((oldfp = fdopen(tfd, "w")) == NULL)
usr.sbin/rpki-client/constraints.c
357
if ((f = fdopen(fd, "r")) == NULL)
usr.sbin/rpki-client/output.c
183
f = fdopen(fd, "w");
usr.sbin/rpki-client/repo.c
699
f = fdopen(fd, "r");
usr.sbin/rpki-client/repo.c
799
f = fdopen(fd, "w");
usr.sbin/smtpd/bounce.c
388
if ((s->msgfp = fdopen(fd, "r")) == NULL) {
usr.sbin/smtpd/enqueue.c
303
fout = fdopen(msg.fd, "a+");
usr.sbin/smtpd/forward.c
59
if ((fp = fdopen(fd, "r")) == NULL) {
usr.sbin/smtpd/mail.lmtp.c
239
if ((file_read = fdopen(fd_read, "r")) == NULL)
usr.sbin/smtpd/mail.lmtp.c
242
if ((file_write = fdopen(fd_write, "w")) == NULL)
usr.sbin/smtpd/mail.maildir.c
183
if ((fp = fdopen(fd, "w")) == NULL)
usr.sbin/smtpd/mail.mboxfile.c
75
if ((fp = fdopen(fd, "w")) == NULL)
usr.sbin/smtpd/makemap.c
256
fp = fdopen(0, "r");
usr.sbin/smtpd/mda.c
214
if ((s->datafp = fdopen(fd, "r")) == NULL) {
usr.sbin/smtpd/mda.c
520
fp = fdopen(fd, "r");
usr.sbin/smtpd/mta_session.c
317
s->datafp = fdopen(fd, "r");
usr.sbin/smtpd/queue_backend.c
306
if ((ifp = fdopen(fdin, "r")) == NULL)
usr.sbin/smtpd/queue_backend.c
310
if ((ofp = fdopen(fdout, "w+")) == NULL)
usr.sbin/smtpd/queue_backend.c
328
if ((ifp = fdopen(fdin, "r")) == NULL)
usr.sbin/smtpd/queue_backend.c
332
if ((ofp = fdopen(fdout, "w+")) == NULL)
usr.sbin/smtpd/queue_fs.c
486
if ((fp = fdopen(fd, "w")) == NULL) {
usr.sbin/smtpd/queue_ram.c
169
f = fdopen(fd2, "w");
usr.sbin/smtpd/smtp_session.c
2683
if ((tx->ofile = fdopen(fd, "w")) == NULL) {
usr.sbin/smtpd/smtpctl.c
145
if ((fd = mkstemp(path)) == -1 || (fp = fdopen(fd, "w+")) == NULL) {
usr.sbin/smtpd/smtpd.c
1704
if ((fp = fdopen(fd, "r")) == NULL)
usr.sbin/smtpd/table_proc.c
140
if ((priv->in = fdopen(fd, "r")) == NULL)
usr.sbin/smtpd/table_proc.c
142
if ((priv->out = fdopen(fdd, "w")) == NULL)
usr.sbin/syslogc/syslogc.c
145
if ((ctlf = fdopen(ctlsock, "r+")) == NULL)
usr.sbin/syslogd/privsep.c
675
fp = fdopen(fd, "r");
usr.sbin/syslogd/privsep.c
701
fp = fdopen(fd, "r");
usr.sbin/tcpdump/pfctl_osfp.c
104
if ((in = fdopen(fd, "r")) == NULL) {
usr.sbin/tcpdump/privsep_pcap.c
374
fp = fdopen(p->fd, "r");
usr.sbin/tcpdump/privsep_pcap.c
494
f = fdopen(fd, "w");
usr.sbin/tftpd/tftpd.c
1072
client->file = fdopen(fd, mode == RRQ ? "r" : "w");
usr.sbin/user/user.c
1074
if ((fp = fdopen(masterfd, "r")) == NULL) {
usr.sbin/user/user.c
1341
if ((to = fdopen(fd, "w")) == NULL) {
usr.sbin/user/user.c
1516
if ((master = fdopen(masterfd, "r")) == NULL) {
usr.sbin/user/user.c
428
if ((to = fdopen(fd, "w")) == NULL) {
usr.sbin/user/user.c
500
if ((to = fdopen(fd, "w")) == NULL) {
usr.sbin/user/user.c
625
if ((to = fdopen(fd, "w")) == NULL) {
usr.sbin/user/user.c
806
if ((fp = fdopen(fd, "w")) == NULL) {