-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.0
2039 lines (1554 loc) · 77.7 KB
/
ChangeLog.0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Sat Aug 8 17:35:14 1998 Joel N. Weber II <[email protected]>
* ftpd/ftpd.c (anonymous_login_name): New variable.
(main): Allow anonymous_login_name to be set with -a flag.
(user): Use anonymous_login_name.
Sun Apr 26 19:37:09 1998 Joel N. Weber II <[email protected]>
* syslogd/syslogd.c (logmsg): When opening the console device,
pass the O_NOCTTY flag to avoid acquiring a controlling tty.
(fprintlog): When opening a log file, pass the O_CREAT flags and
O_NOCTTY flags.
(cfline): Likewise.
Sat Apr 18 11:54:56 1998 Joel N. Weber II <[email protected]>
* syslogd/syslogd.c (cfline): Allow either spaces or tabs in
/etc/syslog.conf; previously, only tabs were allowed for
seperators.
Sun Apr 12 19:57:51 1998 Joel N. Weber II <[email protected]>
* whois/whois-servers: Added some comments explaining the search
path that the GNU whois client uses.
Fri Apr 10 11:13:51 1998 Joel N. Weber II <[email protected]>
* Changed the Makefile.am in daemon subdirectories to use
inetdaemondir instead of bindir.
Fri Apr 10 19:53:37 1998 Joel N. Weber II <[email protected]>
* libinetutils/opieclient.c: Random cosmetic changes.
[HAVE_CONFIG_H]: Inclued config.h.
Fri Apr 10 11:13:51 1998 Joel N. Weber II <[email protected]>
* whois/main.c (main): Use inetutils_package and inetutils_version
rather than PACKAGE and VERSION.
Check the compiled in config file as the second-to-last resort.
(config_buffer_netwhois): New function, mostly created by ripping code
out of config_file_netwhois.
(config_file_netwhois): Use config_buffer_netwhois.
* whois/Makefile.am (whois_SOURCES): Added config.c.
(EXTRA_DIST): Added gen-config-c.
(config.c): Added a rule to generate it from whois-servers using the
gen-config-c script.
* Makefile.am (SUBDIRS): Added ping.
* configure.in: Call IU_ENABLE_CLIENT and AC_SUBST for whois.
Update the comment above the AC_SUBST calls for BUILD_<whatever>;
the change of moving AC_SUBST out of IU_ENABLE_FOO wasn't actually
necissary.
Test for -lz, since I will probably add code that uses it
eventually.
Supply a value for inetdaemondir.
Fri Apr 3 17:11:44 1998 Joel N. Weber II <[email protected]>
* libtelnet/Makefile.am (libtelnet_a_SOURCES): Removed
krb4encpwd.c rsaencpwd.c spx.c; they don't meet our definition of
`free software'.
Thu Mar 26 20:40:06 1998 Joel N. Weber II <[email protected]>
* */Makefile.am: Use @BUILD_FOO@ to determine whether to build the
program.
* configure.in: Call IU_ENABLE_CLIENT for ping. Call AC_SUBST for
BUILD_PING.
* glob/Makefile.am (AUTOMAKE_OPTIONS): Removed; the options are
set adaquaely in ../Makefile.am.
(noinst_LIBRARIES): Use @BUILD_LIBGLOB@ rather than libglob.a
(EXTRA_LIBRARIES): Added libglob.a
* Makefile.am (DISTCLEANFILES): Added `include/*.h include/*/*.h
include/stamp-h'.
* acinclude.m4 (IU_ENABLE_FOO): Fix syntax errors. Remove call to
AC_SUBST; there are now many explicit calls to AC_SUBST to make
automake happy.
(IU_ENABLE_CLIENT): Use `clients' rather than `client' as the
second arg.
(IU_ENABLE_SERVER): Use `servers' rather than `server' as the
second arg.
* configure.in: For every IU_ENABLE_CLIENT and IU_ENABLE_SERVER
call, and an AC_SUBST call for the BUILD_FOO variable.
* telnet/main.c [ENCRYPTION || AUTHENTICATION || TN3270] (help):
Added a second arg to the call to `putc'.
* configure.in: Undo Jeff's previous change to this file, so that
changing the version number will not force me to wait 20+ minutes
(or so it seems) for the inetutils to be rebuilt after I change
the version number.
Rearrange a few macro calls that were added for the glob library
so that autoconf doesn't complain that they're out of order.
Removed some more of the old SUBDIRS cruft.
When setting enable_talk to `no' after not finding curses, also
set BUILD_TALK to the empty string.
Set the BUILD_LIBGLOB variable appropriately.
* ping/ping.c (version.h): Include it.
(show_usage): Use inetutils_bugaddr.
(main): Use inetutils_version rather than VERSION. Don't use
GNU_PACKAGE.
Thu Mar 26 20:47:00 1998 Jeff Bailey <[email protected]>
* configure.in: put VERSION, PACKAGE, and GNU_PACKAGE back in.
* ping/ping.c: Create
* ping/Makefile.am: Update with ping.c
Thu Mar 26 00:08:39 1998 Joel N. Weber II <[email protected]>
* ftp/main.c (cmdscanner): Added new code that is used to replace
some old code iff HAVE_LIBREADLINE.
* ftp/ftp_var.h [HAVE_LIBREADLINE]: Declare `char *line' instead
of `char line[200]'.
* ftp/Makefile.am (LDADD): Added `$(LIBTERMCAP)'.
* Makefile.am (SUBDIRS): Added whois.
(DISTCLEANFILES): Added `pathdefs.make paths.defs'.
* configure.in: Removed some old cruft related to the old system
of not building some directoies.
Added calls to IU_ENABLE_SERVER and IU_ENABLE_CLIENT.
Added checks for libtermcap, libreadline, and libopie.
Generate whois/Makefile.
* acinclude.m4 (IU_ENABLE_FOO): New AC_DEFUN.
(IU_ENABLE_CLIENT): Likewise.
(IU_ENABLE_SERVER): Likewise.
Tue Mar 24 11:46:55 1998 Joel N. Weber II <[email protected]>
* Ran the command for i in `grep man_MANS */Makefile.am|awk -F: '{
print $1 }'`; do (echo;echo 'EXTRA_DIST = $(man_MANS)') >> $i;
done
* configure.in (AM_INIT_AUTOMAKE): Added a third argument to
suppress VERSION and PACKAGE symbols from appearing in config.h
Added much code that was formerly in glob/configure.in, before I
removed that file.
Add glob/Makefile to the `AC_OUTPUT' call.
* headers/Makefile.am (EXTRA_DIST): Added `confpaths.h.in'.
* ftp/Makefile.am (LDADD): Added `$(LIBGLOB)'.
* Makefile.am (EXTRA_DIST): Added paths.
(SUBDIRS): Added glob.
* uucpd/Makefile.am (INCLUDES): Added `$(PATHDEF_TTY)'.
(LDADD): Added `-L../libinetutils -linetutils'.
* telnetd/Makefile.am: Added a line that reads `@PATHDEFS_MAKE@'.
(INCLUDES): Added `$(PATHDEF_TTY) $(PATHDEF_LOGIN)'.
* talkd/Makefile.am: Added a line that reads `@PATHDEFS_MAKE@'.
(INCLUDES): Added `$(PATHDEF_DEV)'.
* syslogd/Makefile.am: Added a line that reads `@PATHDEFS_MAKE@'.
(INCLUDES): Added `$(PATHDEF_LOG) $(PATHDEF_LOGCONF) $(PATHDEF_LOGPID)
$(PATHDEF_CONSOLE)'.
* rshd/Makefile.am (INCLUDES): Added `$(PATHDEF_BSHELL)
$(PATHDEF_NOLOGIN) $(PATHDEF_DEFPATH)'.
Added a line reading `@PATHDEFS_MAKE@'.
* rlogind/Makefile.am (INCLUDES): Added `$(PATHDEF_DEV)
$(PATHDEF_LOGIN)'.
Added a line reading `@PATHDEFS_MAKE@'.
* rexecd/Makefile.am (INCLUDES): Added `$(PATHDEF_DEFPATH)
$(PATHDEF_BSHELL)'.
(LDADD): Added `-L../libinetutils -linetutils'.
Added a line reading `@PATHDEFS_MAKE@'.
* rcp/Makefile.am (INCLUDES): Added `$(PATHDEF_BSHELL)'.
* libinetutils/Makefile.am (INCLUDES): Added `$(PATHDEF_TTY_PFX)
$(PATHDEF_DEVNULL) $(PATHDEF_HEQUIV)'.
* inetd/Makefile.am (LDADD): Added `-L../libinetutils
-linetutils'.
* ftpd/Makefile.am (INCLUDES): Added `$(PATHDEF_DEVNULL)
$(PATHDEF_NOLOGIN) $(PATHDEF_BSHELL)'.
* ftp/Makefile.am (INCLUDES): Added `$(PATHDEF_TMP)
$(PATHDEF_BSHELL)'.
Added a line reading `@PATHDEFS_MAKE@'.
Tue Mar 24 00:28:27 1998 Joel N. Weber II <[email protected]>
* telnet/Makefile.am (noinst_HEADERS): Remove krb4-proto.h;
Kerberos 4 doesn't meet our definition of `free software'.
(INCLUDES): Add `-DTERMCAP -DLINEMODE -DKLUDGELINEMODE -DENV_HACK'.
(LDADD): Add `-L../libinetutils -L../libtelnet -linetutils -ltelnet
$(LIBTERMCAP) $(LIBCRYPT)'.
(LIBTERMCAP): Set make variable from coresponding configure variable
(LIBCRYPT): Likewise.
* uucpd/Makefile.am (INCLUDES): Added `$(PATHDEF_UUCICO)'.
Added a line that reads `@PATHDEFS_MAKE@'.
* tftpd/Makefile.am (noinst_HEADERS): Removed tftpsubs.h
(LDADD): Added `-L../libinetutils -linetutils'.
* tftp/Makefile.am (tftp_SOURCES): Removed tftpsubs.c; that file
has been moved to ../libinetutils.
(noinst_HEADERS): Removed tftpsubs.h; that file has been moved to
../headers.
(LDADD): Added `-L../libinetutils -linetutils'.
Mon Mar 23 11:47:37 1998 Joel N. Weber II <[email protected]>
* telnetd/Makefile.am (LIBTERMCAP, LIBCRYPT, LIBUTIL): Set make
variables corresponding to the configure variables.
(LDADD): Added `-L../libinetutils -L../libtelnet -linetutils -ltelnet
$(LIBTERMCAP) $(LIBUTIL) $(LIBCRYPT)'.
* talkd/Makefile.am (LDADD): Added `-L../libinetutils
-linetutils'.
* talk/Makefile.am (INCLUDES): Added `$(NCURSES_INCLUDE)'.
(LDADD): Added `$(LIBCURSES) -L../libinetutils -linetutils'.
* syslogd/Makefile.am (LDADD): Added `-L../libinetutils
-linetutils'.
* rshd/Makefile.am (LDADD): Added `-L../libinetutils -linetutils'.
* rlogin/Makefile.am (LDADD): Added `-L../libinetutils
-linetutils'.
* rlogind/Makefile.am (LDADD): Added `-L../libinetutils
-linetutils'.
* rcp/Makefile.am (INCLUDES): Added `$(PATHDEF_RSH)
$(PATHDEF_CP)'.
(LDADD): Added `-L../libinetutils -linetutils'.
Added a line `@PATHDEFS_MAKE@'.
* ftpd/Makefile.am (INCLUDES): Added `$(PATHDEF_FTPWELCOME)
$(PATHDEF_FTPUSERS) $(PATHDEF_FTPLOGINMESG)'.
(LDADD): Added `-L../libinetutils -L../libtelnet -linetutils -ltelnet'.
Added the line `@PATHDEFS_MAKE@'.
* ftp/Makefile.am (LDADD): Added ../libinetutils -linetutils.
* libinetutils/Makefile.am (libinetutils_a_SOURCES): Removed
version.c and all the files covered by @LIBOBS@
(libinetutils_a_LIBADD): Add @LIBOBJS@
(noinst_HEADERS): Removed version.h
* configure.in: Removed some old, commented-out cruft.
Removed some old code related to the @DIRS@ hack; that code will
not be needed in the future.
Reinstalled some code that deals with having both a `headers' and
`include' tree.
Removed the iruserok from one of the two places where it appeared
in the AC_REPLACE_FUNCS call.
Reinstalled the line `AC_REPLACE_FUNCS(revoke)'; it had been
commented out, but I see no ChangeLog entry explaining why, and I
suspect that it should not have been commented out.
Changed the message that was `checking for system glob is ok' to
`checking for ok system glob'.
Call `AC_SUBST(VERSION)'.
In the call to AC_OUTPUT, added version.h.
Sun Mar 22 16:13:49 1998 Joel N. Weber II <[email protected]>
* Makefile.am (SUBDIRS): Use an explicit list, rather than @DIRS@.
Removed some random cruft that I'd previously mistakenly added
that is not necissary.
* headers/Makefile.am (EXTRA_DIST): Renamed variable from
noinst_HEADERS. Added tftpsubs.h. Changed version.h to
version.h.in.
(dist-hook): Added to distribute some files in the arpa and protocols
directories.
* inetd/Makefile.am (INCLUDES): Use $(PATHDEF_INETDCONF) instead
of the old hardcoded value.
Added a line that reads `@PATHDEFS_MAKE@'
Mon Mar 9 17:04:55 1998 Joel N. Weber II <[email protected]>
* inetd/Makefile.am (INCLUDES): Set PATH_INETDCONF.
Thu Jan 08 00:16:00 1997 Jeff Bailey <[email protected]>
* Makefile.am, configure.in: Don't actually define SUBDIRS
in configure.in - That confuses automake. Define DIRS instead,
and refer to it in Makefile.am. Fixes make problems.
Wed Dec 31 14:24:00 1997 Jeff Bailey <[email protected]>
* Makefile.am: Make SUBDIRS based on autoconf variable.
* configure.in: Add the --enable-servers,client back in.
Wed Dec 10 23:14:00 1997 Jeff Bailey <[email protected]>
* configure.in, headers/config.h.in: Build test cases
for integrating pathdefs.make into config.h for cleaner
Makefiles. See TEEHEE/LALA combo in configure.in for sample.
Tue Dec 09 18:18:00 1997 Jeff Bailey <[email protected]>
* acheader.h: Remove __BSD_SOURCE define
Mon Dec 08 18:12:00 1997 Jeff Bailey <[email protected]>
* headers/Makefile.am: Create
* ping/Makefile.am: Create
* rexecd/Makefile.am: Create
* rlogin/Makefile.am: Create
* rlogind/Makefile.am: Create
* rsh/Makefile.am: Create
* rshd/Makefile.am: Create
* syslog/Makefile.am: Create
* syslogd/Makefile.am: Create
* talk/Makefile.am: Create
* talkd/Makefile.am: Create
* telnet/Makefile.am: Create
* telnetd/Makefile.am: Create
* tftp/Makefile.am: Create
* tftpd/Makefile.am: Create
* uucpd/Makefile.am: Create
* libinetutils/Makefile.am: Create
* libtelnet/Makefile.am: Create
* configure.in: Modify for automake
* iumacros.m4: Rename to acinclude.m4
* Makefile.am: Update for directory order
* headers/acconfig.h: move to ..
* headers/stamp-h.in: Create
* acconfig.h: Update with automake defines
Sun Dec 07 18:04:00 1997 Jeff Bailey <[email protected]>
* Makefile.am: Create
* ftp/Makefile.am: Create
* ftpd/Makefile.am: Create
* inetd/Makefile.am: Create
* rcp/Makefile.am: Create
* missing: add
* mkinstalldirs: add
* install-sh: add
* config.guess: add
* config.sub: add
* INSTALL: add
* COPYING: add
* configure.in: Add automake hooks.
* config.make.in: Remove
* rules.make: Remove
1997-09-18 Miles Bader <[email protected]>
* libtelnet/kerberos.c (krb_mk_req, krb_rd_req, krb_kntoln,
krb_get_cred, krb_get_lrealm, kuserok): Declarations removed.
(kerberos4_send, kerberos4_is, kerberos4_reply): Pass addresses of
session key args to des functions.
* libtelnet/encrypt.h (Schedule): Don't use _ as a field name.
* rlogind/rlogind.c: Replace #ifdefs of CRYPT with ENCRYPTION.
(do_krb_login): Pass *address* of KDATA->session to des_set_key.
* rlogind/Makefile.in (LDLIBS): Add $(LIBAUTH).
* libtelnet/enc-proto.h (des_new_random_key,
des_set_random_generator_seed, des_key_sched, des_ecb_encrypt,
des_string_to_key): Declarations removed.
* libtelnet/kerberos.c: Change includes of <des.h> & <krb.h> to
<kerberosIV/des.h> & <kerberosIV/krb.h>.
* libtelnet/krb4encpwd.c: Likewise.
* rsh/rsh.c (main): Pass *address* of CRED.session to des_set_key.
* rlogin/rlogin.c (main): Likewise.
1997-09-22 Miles Bader <[email protected]>
* libinetutils/version.c (inetutils_version): Change to `1.3.1c'.
* inetd/inetd.c (print_service): Use long instead of int for
pointer<->int conversion.
* ftpd/ftpd.c (main): Likewise.
* telnetd/sys_term.c (addarg): Likewise.
Mon Sep 22 19:49:42 1997 Philippe De Muyter <[email protected]>
* headers/accconfig.h (HAVE_TTYNAME_DECL): New define slot.
(HAVE_GETGRNAM_DECL): Ditto.
(ttyname): New function prototype #ifndef HAVE_TTYNAME_DECL.
(getgrnam): Likewise.
* inetd/inetd.c (sys/wait.h): File included only if HAVE_SYS_WAIT_H.
* ftpd/ftpd.c, ftpd/popen.c, telnetd/defs.h (sys/wait.h): Ditto.
* uucpd/uucpd.c, syslogd/syslogd.c, ftp/cmds.c (sys/wait.h): Ditto.
* rcp/util.c, rlogin/rlogin.c, talkd/announce.c (sys/wait.h): Ditto.
* syslogd/syslogd.c (sys/resource.h): File included only if
HAVE_SYS_RESOURCE_H.
* rlogin/rlogin.c (sys/resource.h): Ditto.
* configure.in (AC_CHECK_HEADERS): Check for existence of sys/wait.h
and sys/resource.h.
(IU_CHECK_DECL): Check for declaration of ttyname in unistd.h and
getgrnam in grp.h.
* libinetutils/openpty.c (termio.h): File included if HAVE_TERMIO_H.
(TCSAFLUSH): Macro defined if needed.
1997-09-17 Miles Bader <[email protected]>
* libinetutils/version.c (inetutils_version): Change to `1.3.1b'.
* ftp/domacro.c: Make inclusion of <string.h> unconditional.
* libinetutils/daemon.c (STDIN_FILENO, STDOUT_FILENO,
STDERR_FILENO): Macros removed.
Wed Sep 17 18:14:48 1997 Philippe De Muyter <[email protected]>
* configure.in ({STDIN,STDOUT,STDERR}_FILENO): Create definitions for
those macros if they are not defined in unistd.h.
* headers/acconfig.h ({STDIN,STDOUT,STDERR}_FILENO): New define slots.
Mon Mar 3 17:56:36 1997 Philippe De Muyter <[email protected]>
* headers/acconfig.h (HAVE_HOSTENT_H_ADDR_LIST): New macro;
(HAVE_GETCWD_DECL, HAVE_GETLOGIN_DECL): New macros.
getcwd, getlogin, getpass: New prototypes, if needed.
* inetd/inetd.c (sys/resource.h): File included only if
HAVE_SYS_RESOURCE_H.
(SIGCHLD): Macro defined if not defined.
* ftp/ftp.c (hookup): Fixed if not HAVE_HOSTENT_H_ADDR_LIST;
do not call fdopen twice with the same file descriptor.
* ftp/domacro.c (string.h): File included instead of strings.h if
needed.
* ftp/extern.h (getpass): Declaration removed.
* libtelnet/read_passwd.c: File renamed from read_password.c (> 14).
* libtelnet/Makefile.in (SRCS): Reference read_passwd.c, not
read_password.c.
* libinetutils/localhost.c (localhost): Test ENAMETOOLONG only if
defined.
* libinetutils/daemon.c (STD{IN,OUT,ERR}_FILENO): Macros defined if
not defined.
* libinetutils/iruserok.c (ruserok, __icheckhost): Fixed if not
HAVE_HOSTENT_H_ADDR_LIST.
* configure.in (getcwd, getlogin): Check declarations with
IU_CHECK_DECL.
(h_addr_list): Check if field exist using IU_CHECK_STRUCT_FIELD.
1997-09-15 Miles Bader <[email protected]>
* libinetutils/localhost.c: Protect include of <malloc.h>.
* libinetutils/version.c (inetutils_version): Change to `1.3.1a'.
* libinetutils/ttymsg.c (ttymsg): Dynamically allocate DEVICE.
[!O_NONBLOCK && O_NDELAY] (O_NDELAY): New macro.
1997-09-12 Miles Bader <[email protected]>
* rlogin/Makefile.in (SRCS, HDRS, OBJS): Variables removed.
(DISTFILES): Don't use $(SRCS) & $(HDRS).
(CLEAN): Don't use $(OBJS).
(rlogin): Rule removed.
* krb.h: File removed.
* rsh/rsh.c, rshd/rshd.c: Replace #ifdefs of CRYPT with ENCRYPTION.
* rsh/Makefile.in, rshd/Makefile.in (LDLIBS): New variable.
* libinetutils/krcmd.c, libinetutils/kcmd.c, libinetutils/des_rw.c:
New files (moved from rlogin directory).
* rlogin/krcmd.c, rlogin/kcmd.c, rlogin/des_rw.c: Files removed
(moved to libinetutils directory).
* libinetutils/Makefile.in (SRCS): Add krcmd.c, kcmd.c, & des_rw.c.
(OBJS): Add krcmd.o, kcmd.o, & des_rw.o.
* rlogin/kcmd.c: Protect whole file with #ifdef KERBEROS.
From Alexandre Oliva <[email protected]>:
* syslogd/syslogd.c (cfline): Remove declaration of hstrerror.
* telnetd/utility.c (fatalperror): Remove declaration of strerror.
1997-09-11 Miles Bader <[email protected]>
* rlogin/des_rw.c (des_set_key): Function removed.
* rlogin/rlogin.c, rlogin/krcmd.c, rlogin/des_rw.c: Replace
#ifdefs of CRYPT with ENCRYPTION.
* rlogin/kcmd.c, rlogin/rlogin.c: Don't include "krb.h"
* rlogin/Makefile.in (SRCS, HDRS, OBJS, LDLIBS): New variables.
(DISTFILES): Base on $(SRCS) and $(HDRS).
(CLEAN): Base on $(OBJS).
(rlogin): New rule.
* configure.in: If authentication is enabled, also define KERBEROS.
* headers/acconfig.h (KERBEROS): New define slot.
* libinetutils/version.c (inetutils_version): Change to `1.3.1'.
1997-09-10 Miles Bader <[email protected]>
* libinetutils/version.c (inetutils_version): Change to `1.3b'.
* ftp/cmds.c (lcd): Conditionalize use of getcwd with a zero size arg.
* configure.in: Check if getcwd (0, 0) is ok.
* headers/acconfig.h (HAVE_GETCWD_ZERO_SIZE): New define slot.
From Martin Buck <[email protected]>:
* telnet/sys_bsd.c (TerminalNewMode): Don't limit to 7-bits when
not in binary mode.
1997-07-28 Miles Bader <[email protected]>
* ftp/ftp.c (recvrequest, gunique): Get rid of
perm-checking-with-access crap.
1997-05-27 Miles Bader <[email protected]>
* iumacros.m4: Doc fixes.
Tue Mar 4 12:49:00 1997 Philippe De Muyter <[email protected]>
* paths (PATH_TMP): Added a trailing '/' to default value.
Mon Mar 3 23:53:45 1997 Philippe De Muyter <[email protected]>
* headers/acconfig.h (HAVE_SYS_ERRLIST): New macro.
(getpass, hstrerror, strerror): New function declarations, if needed.
* inetd/inetd.c (reapchild): Use wait, if not HAVE_WAIT3.
* libinetutils/hstrerror.c (hstrerror): Function made const.
* libinetutils/strerror.c (strerror): Function made const.
(sys_nerr): Fixed variable name.
* configure.in (sys_errlist): If variable exists,
AC_DEFINE(HAVE_SYS_ERRLIST).
Thu Apr 17 12:47:31 1997 Miles Bader <[email protected]>
* libinetutils/version.c (inetutils_version): Change to `1.3a'.
Fri Feb 28 17:05:15 1997 Miles Bader <[email protected]>
* ftpd/ftpd.c (complete_login): Don't segv if CRYPT returns 0.
From: Andreas Schwab <[email protected]>:
* configure.in (sigset_t): Add missing comma.
* rcp/rcp.c (source): Print longer-than-long numbers correctly.
* ftpd/ftpcmd.y: Likewise.
* ftp/cmds.c (restart): Likewise.
Tue Feb 25 18:21:18 1997 Miles Bader <[email protected]>
From David J MacKenzie <[email protected]>:
* tftpd/tftpd.c (validate_access): Truncate files opened for writing.
* ftp/ftp.c (login): Deal correctly with EOF to Name: prompt.
Mon Feb 24 00:19:06 1997 Miles Bader <[email protected]>
* libinetutils/version.c (inetutils_version): Change to `1.3'.
* libinetutils/version.c (inetutils_version): Change to `1.2o'.
* libinetutils/snprintf.c, libinetutils/snprintf.h: Updated from
snprintf-1.1.
Sun Feb 23 13:22:41 1997 Miles Bader <[email protected]>
* iumacros.m4 (IU_LIB_NCURSES): Add -with[out]-ncurses-include-dir
options. Search $includedir and $prefix/include first in default list.
From NIIBE Yutaka <[email protected]>:
* talk/ctl_transact.c (ctl_transact): Zero CTL_MASK before using.
* libinetutils/version.c (inetutils_version): Change to `1.2n'.
* rules.make ($(bindir)/%: % $(bindir)): Test $USER as well as the
output of whoami, for linux boxes with a broken whoami.
Fri Feb 21 14:16:31 1997 Miles Bader <[email protected]>
* libinetutils/iruserok.c (iruserok): Dynamically allocate PBUF
instead of using MAXPATHLEN.
(__ivaliduser): Dynanamically allocage BUF rather than using
MAXHOSTNAMELEN.
[STDC_HEADERS || HAVE_STDLIB_H]: New include.
[HAVE_MALLOC_H] <malloc.h>: New include.
Thu Feb 20 14:40:00 1997 Miles Bader <[email protected]>
* libinetutils/version.c (inetutils_version): Change to `1.2m'.
* syslog.c: New file.
* libinetutils/Makefile.in (SRCS): Add syslog.c.
Wed Feb 19 10:02:44 1997 Miles Bader <[email protected]>
* iumacros.m4 (IU_LIB_NCURSES): Add search for NCURSES_INCLUDE.
* config.make.in (NCURSES_INCLUDE): New variable.
* talk/Makefile.in (CPPFLAGS): Add $(NCURSES_INCLUDE).
* headers/acconfig.h (HAVE_SOCKADDR_IN_SIN_LEN): New define slot.
* iumacros.m4 (IU_CONFIG_PATHS): Give up on using IFS to break
apart search: paths, just use sed.
From NIIBE Yutaka <[email protected]>:
* talk/ctl.c (daemon_addr, ctl_addr, my_addr): Leave length out of
initialization if !HAVE_SOCKADDR_IN_SIN_LEN.
* talk/invite.c (invite_remote): Use memcpy instead of bcopy.
* talk/look_up.c (check_local): Likewise.
* configure.in: Add check for sin_len field in struct sockaddr_in.
Fix test for whether we should build talk.
Tue Feb 18 22:09:51 1997 Miles Bader <[email protected]>
* iumacros.m4 (IU_CONFIG_PATHS): Use `set' instead of `read' with
a here document, because the latter fucks up in some shells.
Tue Feb 18 20:14:48 1997 Kaveh R. Ghazi <[email protected]>
* configure.in: Add AC_STRUCT_ST_BLKSIZE test.
* ftp/cmds.c: Include glob.h last, it defines "const" to null
which breaks some system headers.
* ftp/ftp.c (recvrequest): Handle missing st_blksize member.
* ftp/ftp_var.h: Make all declarations extern except in one file
to avoid conflicts when linking.
* ftp/main.c (FTP_EXTERN): Activate this macro so the declarations
in ftp/ftp_var.h become definitions.
* ftpd/ftpcmd.y: Include glob.h last, it defines "const" to null
which breaks some system headers.
* ftpd/popen.c: Likewise.
* ftpd/ftpd.c: Likewise. Also handle missing st_blksize member.
* headers/acconfig.h: Normalize variable argument list usage.
Also add support to handle missing st_blksize member.
* libinetutils/snprintf.c: Normalize variable argument list usage.
* libinetutils/snprintf.h: Likewise. Also constify DATA.pf member.
* rcp/util.c: Handle missing st_blksize member.
* rexecd/rexecd.c: Make environ extern to avoid link time conflicts.
* rshd/rshd.c: Likewise.
* telnetd/ext.h: Make terminaltype and line be extern to avoid
link time conflicts.
* telnetd/sys_term.c (rmut): protect use of ut_host member.
* telnetd/telnetd.c (main, doit): Likewise.
(utmp_len): Only declare if HAVE_UTMP_UT_HOST.
* tftp/extern.h (toplevel): New declaration.
* tftp/tftp.c (toplevel): Duplicate definition removed.
* uucpd/uucpd.c (dologout): Remove unused status variable. Add a
case for HAVE_WAITPID.
Tue Feb 18 01:13:16 1997 Miles Bader <[email protected]>
From Alain Magloire <[email protected]>:
* ftpd/ftpd.c (dologout): Small race condition with SIGURG (D. Greenman)
* ftpd/popen.c (popen): Buffer overflow in argv[] (AUSCERT)
* ftpd/ftpcmd.y: check_login for PASV (*Hobbit)
* libinetutils/version.c (inetutils_version): Change to `1.2l'.
* libinetutils/snprintf.c (vsnprintf): New function, slightly
modified from snprintf.
[!HAVE_SNPRINTF] (snprintf): Now a wrapper that calls vsnprintf.
Change param types to match conventional signature.
[HAVE_CONFIG_H] <config.h>: New include.
From Marcus Daniels <[email protected]>:
* configure.in (AC_REPLACE_FUNCS): Add xstrup & getusershell.
(vsnprintf): Check for, and possibly replace, this function.
* headers/acconfig.h: Declare vsnprintf if the system doesn't.
(HAVE_VSNPRINTF): New define slot.
* rules.make ($(bindir)/%: % $(bindir)): If $(INST_PROG_FLAGS) is
non-empty, only do the install if we're root.
* libinetutils/Makefile.in (SRCS): Add getusershell.c & xstrdup.c.
Mon Feb 17 15:08:59 1997 Miles Bader <[email protected]>
* libinetutils/version.c (inetutils_version): Change to `1.2k'.
From Alain Magloire <[email protected]>:
* talkd/announce.c (strvis): Use '\007' for systems that don't
recognize '\a'.
(announce): Don't pass TF argument to print_mesg.
(print_mesg): Remove TF parameter.
Free VIS_USER after we're done with it.
* talkd/process.c (process_request): Cast 0 argument to htonl.
* libinetutils/ttymsg.c (ttymsg): Add check for dangerous values
of LINE, and guard against buffer overflow.
* Makefile.in (DISTFILES): Add THANKS.
* THANKS: New file.
* libinetutils/snprintf.c: Real snprintf replacement, from
Alain Magloire <[email protected]>.
* libinetutils/snprintf.h: New file.
* libinetutils/Makefile.in (DISTFILES): Add snprintf.h.
From NIIBE Yutaka <[email protected]>:
* telnetd/sys_term.c (scrub_env): New function.
(start_login): Use it.
* ftp/ruserpass.c (ruserpass): Use snprintf instead of sprintf.
* ftpd/ftpd.c (retrieve): Likewise.
* telnetd/utility.c (fatal, fatalperror): Likewise.
* telnetd/sys_term.c (startslave, start_login): Likewise.
* talkd/announce.c (print_mesg): Likewise.
* syslogd/syslogd.c (main, fprintlog, cfline): Likewise.
* rlogind/rlogind.c (fatal): Likewise.
* rexecd/rexecd.c (error): Likewise.
* ping/ping.c (pr_addr): Likewise.
* inetd/inetd.c (set_proc_title): Likewise.
* iumacros.m4 (IU_LIB_TERMCAP): See if -lcurses works too.
(IU_LIB_CURSES): Don't check whether curses needs termcap if
$LIBCURSES == $LIBTERMCAP.
Sun Feb 16 21:45:02 1997 Miles Bader <[email protected]>
* telnetd/defs.h, rlogind/rlogind.c, rlogin/rlogin.c <sys/proc.h>:
Include removed.
Thu Jan 23 18:25:01 1997 Kaveh R. Ghazi <[email protected]>
* configure.in: Add checks for sys/proc.h, sys/select.h and
sys/time.h. Add AC_HEADER_TIME check. Add checks for seteuid,
setegid, setreuid, setregid, setresuid, setresgid, killpg,
setlinebuf, utimes and utime. Add AC_FUNC_SETVBUF_REVERSED and
AC_FUNC_VFORK tests.
* ftp/cmds.c: Use TIME_WITH_SYS_TIME macro for time.h headers.
* ftp/ftp.c: Likewise. Also include sys/select.h for fd_set on AIX.
* ftp/ftp_var.h: Make declarations of mapin/mapout be extern so
they don't collide with their definitions below.
* ftpd/ftpcmd.y: Include sys/types.h and use TIME_WITH_SYS_TIME
macro. Also make declarations of cmttab/sitetab be extern so
they don't collide with their definitions below.
* ftpd/ftpd.c: Use TIME_WITH_SYS_TIME macro.
* headers/acconfig.h: Provide fallback definitions for killpg,
seteuid and setegid.
* inetd/inetd.c: Include sys/types.h, use TIME_WITH_SYS_TIME macro
and include sys/select.h.
* libinetutils/xmalloc.c: New file (to support alloca.c.)
* libinetutils/Makefile.in: Add xmalloc.c to $(SRCS), add
xmalloc.o to $(OBJS).
* libinetutils/cleansess.c: Use TIME_WITH_SYS_TIME macro.
* libinetutils/iruserok.c: Likewise.
* libinetutils/logout.c: Likewise.
* libinetutils/logwtmp.c: Likewise.
* libinetutils/localhost.c: Include stdlib.h to prototype malloc().
* libtelnet/spx.c (spx_send, spx_is): remove superfluous casts.
* rcp/rcp.c: Use TIME_WITH_SYS_TIME macro. Use utime() if
utimes() is missing. Cast 4th arg of setsockopt() in toremote()
and tolocal() functions.
* rexecd/rexecd.c: Include sys/types.h, use TIME_WITH_SYS_TIME
macro and include sys/select.h.
* rlogin/rlogin.c: Include sys/types.h and use TIME_WITH_SYS_TIME
macro. Include sys/proc.h on hpux only. Cast 4th arg of
setsockopt() in main().
* rlogind/rlogind.c: Use TIME_WITH_SYS_TIME macro. Include
sys/proc.h on hpux only. Include sys/select.h. Cast 4th arg of
setsockopt() in main().
* rsh/rsh.c: Use TIME_WITH_SYS_TIME macro. Include sys/select.h.
Cast 4th arg of setsockopt() in main().
* rshd/rshd.c: Use TIME_WITH_SYS_TIME macro. Include sys/select.h.
* syslogd/syslogd.c: Use TIME_WITH_SYS_TIME macro. Include
sys/select.h. Include syslog.h, not sys/syslog.h. Handle missing
setlinebuf() function in main().
* talk/ctl_transact.c: Use TIME_WITH_SYS_TIME macro. Include
sys/select.h.
* talk/get_names.c: Include sys/types.h.
* talk/invite.c: Use TIME_WITH_SYS_TIME macro.
* talk/io.c: Use TIME_WITH_SYS_TIME macro. Include sys/select.h.
* talk/msgs.c: Use TIME_WITH_SYS_TIME macro.
* talkd/announce.c: Use TIME_WITH_SYS_TIME macro. Include stdlib.h
to prototype malloc(). Remove superfluous cast of malloc() in
function print_mesg().
* talkd/table.c: Use TIME_WITH_SYS_TIME macro.
* talkd/talkd.c: Use TIME_WITH_SYS_TIME macro.
* telnet/commands.c: Include stdlib.h to prototype malloc().
Only prototype strchr()/strrchr()/htons() if they are not macros.
Avoid superfluous cast of malloc() in function env_init().
* telnet/externs.h: Include termio.h & termios.h, not sys/termio.h
& sys/termios.h.
* telnet/main.c: Only prototype strrchr() if its not a macro.
* telnet/network.c: Use TIME_WITH_SYS_TIME macro. Include
sys/select.h.
* telnet/sys_bsd.c: Likewise.
* telnet/telnet.c: Include stdlib.h to prototype malloc().
* telnet/utilities.c: Use TIME_WITH_SYS_TIME macro.
* telnetd/defs.h: Use TIME_WITH_SYS_TIME macro. Include
sys/proc.h on hpux only. Do #undef SE to avoid redecl warnings.
* telnetd/telnetd.c (telnet): Do #undef HE to avoid redecl warnings.
* telnetd/utility.c (edithost, putf): Only prototype
strncpy()/strchr()/strrchr() if they are not macros.
* tftp/tftp.c: Use TIME_WITH_SYS_TIME macro.
* uucpd/uucpd.c: Likewise. Also, wrap comments after #else and
#endif with /* */ in all cases.
Fri Jan 24 14:17:08 1997 Miles Bader <[email protected]>
* libinetutils/version.c (inetutils_version): Change to `1.2j'.
* iumacros.m4 (IU_CONFIG_PATHS): Temporarily suppress autoconf
quoting around regexps containing "[" and "]".
* paths (PATH_UTMP, PATH_WTMP, PATH_LASTLOG): Add /var/adm to file
search path.
* config.make.in (CPPFLAGS): Add $(CPPFLAGS-$(<F)).
* libinetutils/Makefile.in (CPPFLAGS): Remove $(CPPFLAGS-$(<F)).
(CPPFLAGS-logout.c, CPPFLAGS-logwtmp.c, CPPFLAGS-logwtmpko.c,
CPPFLAGS-ttymsg.c, CPPFLAGS-cleansess.c, CPPFLAGS-daemon.c):
New variables.
(CPPFLAGS): Variable removed.
* telnet/commands.c (set_mode): Renamed from setmode, to avoid
conflict with netbsd <unistd.h>; all references changed.
(clear_mode): Renamed from clearmode, for consistency with
setmode; all references changed.
* iumacros.m4 (IU_LIB_NCURSES): New macro.
(IU_LIB_TERMCAP): Use IU_LIB_NCURSES, and prefer ncurses as the
termcap library when it exists.
(IU_LIB_CURSES): Special case ncurses (it never requires termcap).
(_iu_curses_needs_termcap): Macro removed.
* uucpd/uucpd.c (doit): Use PATH_UUCICO instead of _PATH_UUCICO.
(dologin): Use PATH_LASTLOG instead of _PATH_LASTLOG.
[HAVE_UTMP_H] <utmp.h>: New include.
* uucpd/Makefile.in (CPPFLAGS): Add $(PATHDEF_LASTLOG).
Use $(PATHDEF_UUCICO) instead of old wrong define.
Thu Jan 23 13:12:03 1997 Miles Bader <[email protected]>
* libinetutils/version.c (libinetutils_version): Change to `1.2i'.
* configure.in: Move general library tests before any function tests.
* telnetd/sys_term.c (login_tty): Use setpgid instead of setpgrp.
* telnet/commands.c: Protect includes with HAVE_..._H rather than
random system defines.
(tn): Protect declaration of htons with !HAVE_HTONS_DECL.
* configure.in (htons): Add new declaration check.
(AC_CHECK_HEADERS): Add sys/param.h, unistd.h, sys/file.h & fcntl.h.
* headers/acconfig.h (HAVE_HTONS_DECL): New define slot.
* telnetd/sys_term.c (wtmpf): Initialize from PATH_WTMP.
[!PARENT_DOES_UTMP] (utmpf): Initialize from PATH_UTMP.
[NEWINIT && HAVE_UTMP_H && HAVE_UTMP_UT_TV] (HAVE_WTMP_UT_TV): New macro.
[NEWINIT && HAVE_UTMPX_H && HAVE_UTMPX_UT_TV] (HAVE_WTMP_UT_TV): New macro.
* configure.in: Check for ut_tv in struct utmpx, not struct wtmp.
Only do tests using <utmp.h> / <utmpx.h> when they exist.
* headers/acconfig.h (HAVE_UTMPX_UT_TV): Renamed from HAVE_WTMP_UT_TV.
* telnetd/Makefile.in (CPPFLAGS): Add $(PATHDEF_UTMP) & $(PATHDEF_WTMP).
* libinetutils/stub_tgetent.c (tgetent): Add missing semi.
Wed Jan 22 20:51:31 1997 Miles Bader <[email protected]>
* libinetutils/version.c (inetutils_version): Change to `1.2h'.
Tue Jan 21 15:32:56 1997 Miles Bader <[email protected]>
* libinetutils/openpty.c (openpty): Only use TIOCSWINSZ if it's
defined.
* configure.in: Add existance & decl tests for h_errno.
* headers/acconfig.h (HAVE_H_ERRNO, HAVE_H_ERRNO_DECL): New define
slots.
Mon Jan 20 20:35:53 1997 Miles Bader <[email protected]>
* libinetutils/herror.c (herror): New file.
* configure.in (AC_REPLACE_FUNCS): Add herror.
* libinetutils/Makefile.in (SRCS): Add herror.c.
* rsh/rsh.c (main): Always use sigset_t & OSIGS & SIGS variables,
and pass a pointer to the talk function.
(talk): Always use a pointer for the OSIGS arg (was OMASK).
* headers/acconfig.h (HAVE_UTMP_UT_TV, sigset_t): Add define slots.
* telnetd/sys_term.c (rmut): Use HAVE_WTMP_UT_TV rather than
HAVE_UTMPX_H || HAVE_UTMP_UT_TV.
* configure.in (sigset_t): New type replacement.
Add check for ut_tv field in struct wtmp.
Wed Jan 15 16:52:31 1997 Miles Bader <[email protected]>
* ftpd/ftpd.c (makedir): Provide the absolute name of the new
directory in the reply, as per rfc959.
Mon Jan 20 19:55:30 1997 Kaveh R. Ghazi <[email protected]>
* ftp/extern.h (command): Constify fmt argument.
* ftp/ftp.c (command): Normalize variable argument list usage.
Require both HAVE_STDARG_H && __STDC__==1 to allow inclusion of
<stdarg.h> and use of ellipses, failing either we fall back on
<varargs.h> and va_alist. Ensure stdarg.h/varargs.h appears
before syslog.h in all cases to avoid problems on solaris.
* ftp/ruserpass.c: Likewise.
* ftpd/ftpd.c (reply, lreply, setproctitle): Likewise.
* headers/err.h: Likewise.
* libinetutils/err.c (warn, warnx, err, errx): Likewise.
* libinetutils/snprintf.c (snprintf): Likewise.
* rcp/rcp.c (oldw, run_err): Likewise.
* rlogin/rlogin.c (warning): Likewise.
* rsh/rsh.c (warning): Likewise.
* rshd/rshd.c (error): Likewise.
* telnet/commands.c (call): Likewise.
Mon Jan 13 22:17:38 1997 Kaveh R. Ghazi <[email protected]>
* configure.in (AC_CHECK_HEADERS): Add sys/sysmacros.h for solaris
to get the roundup() macro. (AC_CHECK_FUNCS): Add waitpid().
* ftp/cmds.c: Don't declare "union wait status". Its never used
and causes problems for posix sys/wait.h. Consequently, pass 0 to
the wait() function. Add an (ignored) int parameter to function
passed to signal().
* ftp/ftp.c: Likewise for functions passed to signal().
* ftp/main.c: Likewise for functions passed to signal().
* ftpd/popen.c: Add POSIX signal handling.
* inetd/inetd.c: Likewise.
* libinetutils/ttymsg.c: Likewise.
* rcp/rcp.c: Change macro MODEMASK to RCP_MODEMASK to avoid
conflict with solaris sys/vnode.h header.
* rcp/util.c: Include sys/sysmacros.h for solaris to get the
roundup() macro.
* rexecd/rexecd.c: Use O_RDWR instead of "2" in call to open().
* rlogind/rlogind.c: Don't define FD_SETSIZE, let OS headers do it.