Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: 1274a84b093eb575533fae4ab057ff9114d2330b (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2007-10-04 19:52  arthur

	* [r433] .: ignore tarballs

2007-10-04 19:49  arthur

	* [r432] configure.ac: remove linking with libresolv because it's
	  not needed on Linux

2007-10-03 20:27  arthur

	* [r431] nss-ldapd.conf: some reordering to make the file more
	  logical and minor fixes

2007-10-03 20:26  arthur

	* [r430] Makefile.am: pass --enable-warnings when running the
	  distcheck target

2007-10-03 20:19  arthur

	* [r429] README: some general documentation improvements

2007-09-28 08:06  arthur

	* [r428] man/nss-ldapd.conf.5.xml: add note about escaping of
	  ldapi:// scheme

2007-09-28 08:06  arthur

	* [r427] debian/libnss-ldapd.templates, debian/po/ca.po,
	  debian/po/cs.po, debian/po/da.po, debian/po/de.po,
	  debian/po/es.po, debian/po/fr.po, debian/po/ja.po,
	  debian/po/nl.po, debian/po/pt.po, debian/po/pt_BR.po,
	  debian/po/ru.po, debian/po/sv.po, debian/po/templates.pot,
	  debian/po/vi.po: remove note about escaping of ldapi:// url
	  scheme

2007-09-28 07:05  arthur

	* [r426] nslcd/cfg.c: add warnings and errors to untested and
	  unsupported configfile options

2007-09-25 20:57  arthur

	* [r425] man/nss-ldapd.conf.5.xml: manual page improvements

2007-09-24 19:29  arthur

	* [r424] configure.ac: switch to defining __thread as empty string
	  and issue warning if __thread keyword is not supported

2007-09-24 19:22  arthur

	* [r423] common/tio.c: also initialize sa_sigaction although it's
	  not used

2007-09-24 18:58  arthur

	* [r422] debian/libnss-ldapd.postinst: do something special for
	  setting the uri parameter because it may be speicified multiple
	  times

2007-09-24 13:39  arthur

	* [r421] debian/libnss-ldapd.config: fix newline mangling

2007-09-23 20:39  arthur

	* [r420] debian/libnss-ldapd.config: properly handle multiple uri
	  lines in config file

2007-09-23 20:18  arthur

	* [r419] debian/libnss-ldapd.postinst: trim preceding spaces when
	  adding an entry in /etc/nsswitch.conf

2007-09-23 11:06  arthur

	* [r418] Makefile.am, common/tio.c, nslcd/ldap-nss.h,
	  nslcd/nslcd.c, nss/common.c: some small improvements to the code
	  based on some source code checks

2007-09-23 11:01  arthur

	* [r417] Makefile.am: remove pscan target as these checks are
	  sufficiently covered by the other tests

2007-09-22 21:40  arthur

	* [r416] nslcd/Makefile.am: add compat files to sources so they end
	  up in the tarball

2007-09-22 21:35  arthur

	* [r415] tests/Makefile.am: add all objects that are now needed to
	  test the configuration module

2007-09-22 21:29  arthur

	* [r414] tests/test_cfg.c: remove test for alloc_lsd() because we
	  don't use struct ldap_service_search_descriptor any more

2007-09-21 19:44  arthur

	* [r412] nslcd/ldap-nss.c: remove unneeded variables and slightly
	  improve logging

2007-09-21 19:39  arthur

	* [r411] common/Makefile.am: just use -fPIC on all files in this
	  directory

2007-09-19 20:47  arthur

	* [r410] nslcd/cfg.c, nslcd/cfg.h, nslcd/nslcd.c: put config
	  filename as a parameter to cfg_init()

2007-09-15 17:20  arthur

	* [r409] nslcd/ldap-nss.c: centralize opening of connection to LDAP
	  server in do_open() and refactor do_bind() to be simpler (making
	  do_rebind() just one line)

2007-09-15 14:43  arthur

	* [r408] man/nss-ldapd.conf.5.xml: remove documentation for
	  nss_schema option since it isn't used any more and probably never
	  will be

2007-09-15 14:42  arthur

	* [r407] nslcd/attmap.c, nslcd/attmap.h, nslcd/cfg.c, nslcd/cfg.h,
	  nslcd/common.h, nslcd/group.c, nslcd/ldap-nss.c,
	  nslcd/ldap-nss.h, nslcd/passwd.c: remove support for nested
	  groups and use of uniqueMember and member attributes as well as
	  memberOf attribute (this removes quite some functionality but
	  helps us in refactoring because the code was one big exception to
	  all the other modules)

2007-09-15 14:10  arthur

	* [r406] nslcd/group.c, nslcd/ldap-nss.c, nslcd/ldap-nss.h: some
	  more code cleanup, changing return type of _nss_ldap_init(),
	  integrating _nss_ldap_init(), do_init_session(), do_parse_async()
	  and _nss_ldap_search_async() into the functions that call them
	  (each was only called once)

2007-09-15 11:35  arthur

	* [r404] nslcd/alias.c, nslcd/ether.c, nslcd/group.c, nslcd/host.c,
	  nslcd/ldap-nss.c, nslcd/ldap-nss.h, nslcd/netgroup.c,
	  nslcd/network.c, nslcd/passwd.c, nslcd/protocol.c, nslcd/rpc.c,
	  nslcd/service.c, nslcd/shadow.c: do not pass useless errnos
	  around because they aren't used anymore

2007-09-15 08:25  arthur

	* [r403] nslcd/cfg.h: remove unused include

2007-09-14 23:10  arthur

	* [r402] nslcd/ldap-nss.c: some type fixes and logic
	  simplifications

2007-09-14 23:10  arthur

	* [r401] nslcd/group.c: minor code improvements

2007-09-14 22:00  arthur

	* [r400] nslcd/Makefile.am, nslcd/alias.c, nslcd/cfg.c,
	  nslcd/ether.c, nslcd/group.c, nslcd/host.c, nslcd/ldap-nss.c,
	  nslcd/ldap-nss.h, nslcd/netgroup.c, nslcd/network.c,
	  nslcd/passwd.c, nslcd/protocol.c, nslcd/rpc.c, nslcd/service.c,
	  nslcd/shadow.c, nslcd/util.c, nslcd/util.h: move the two
	  remaining useful functions from util.c to ldap-nss.c

2007-09-14 21:51  arthur

	* [r399] nslcd/group.c, nslcd/util.c, nslcd/util.h: move
	  _nss_ldap_dn2uid() from util.c to group.c

2007-09-14 21:51  arthur

	* [r398] nslcd/common.h, nslcd/passwd.c: add note about free()ing
	  the returned value and add logging

2007-09-14 21:01  arthur

	* [r397] nslcd/common.h, nslcd/group.c, nslcd/passwd.c: move
	  user2dn() from group.c to passwd_username2dn() in passwd.c

2007-09-14 20:54  arthur

	* [r396] nslcd/alias.c, nslcd/ether.c, nslcd/group.c, nslcd/host.c,
	  nslcd/network.c, nslcd/passwd.c, nslcd/protocol.c, nslcd/rpc.c,
	  nslcd/service.c, nslcd/shadow.c: do not flush streams: our caller
	  closes the streams flusing them

2007-09-14 20:50  arthur

	* [r395] nslcd/alias.c, nslcd/ether.c, nslcd/group.c,
	  nslcd/network.c, nslcd/passwd.c, nslcd/protocol.c, nslcd/rpc.c,
	  nslcd/service.c, nslcd/shadow.c: make use of write_*ent()
	  functions consistent

2007-09-14 19:44  arthur

	* [r394] nslcd/alias.c, nslcd/ldap-nss.c, nslcd/ldap-nss.h,
	  nslcd/util.c, nslcd/util.h: revert special casing for
	  alias_byname() to other functions and some logging strings
	  simplifications

2007-09-14 19:35  arthur

	* [r393] nslcd/group.c: remove some more references to the old
	  locked functions

2007-09-14 18:48  arthur

	* [r392] nslcd/alias.c, nslcd/ether.c, nslcd/group.c, nslcd/host.c,
	  nslcd/ldap-nss.c, nslcd/ldap-nss.h, nslcd/network.c,
	  nslcd/passwd.c, nslcd/protocol.c, nslcd/rpc.c, nslcd/service.c,
	  nslcd/shadow.c, nslcd/util.c: remove mutex from all LDAP
	  operations because we now have a session and a connection per
	  thread

2007-09-14 16:30  arthur

	* [r391] nslcd/alias.c, nslcd/common.h, nslcd/ether.c,
	  nslcd/group.c, nslcd/host.c, nslcd/ldap-nss.c, nslcd/ldap-nss.h,
	  nslcd/netgroup.c, nslcd/network.c, nslcd/nslcd.c, nslcd/passwd.c,
	  nslcd/protocol.c, nslcd/rpc.c, nslcd/service.c, nslcd/shadow.c,
	  nslcd/util.c, nslcd/util.h: get rid of global session and instead
	  pass the session as a parameter with every request and allocate a
	  session per thread

2007-09-12 19:12  arthur

	* [r390] nslcd/ldap-nss.c: some code cleanup and fixes to the
	  layout

2007-09-09 15:06  arthur

	* [r389] nslcd/group.c, nslcd/ldap-nss.c, nslcd/ldap-nss.h,
	  nslcd/util.c: change naming of search functions to clearly
	  indicate whether the synchronous or the asynchronous interface is
	  used

2007-09-09 10:30  arthur

	* [r388] compat/ldap.h, nslcd/cfg.c, nslcd/cfg.h, nslcd/ldap-nss.c:
	  some simplifications in the reconnect loging, removing the
	  undocumented nss_reconnect_maxconntries configfile option and
	  some work to split out LDAP compatibility code to a separate file

2007-09-08 21:37  arthur

	* [r387] nslcd/common.c, nslcd/common.h, nslcd/ldap-nss.c: move
	  nss2nslcd() to ldap-nss.c

2007-09-08 20:47  arthur

	* [r386] nslcd/group.c, nslcd/ldap-nss.c, nslcd/ldap-nss.h: rename
	  a function and a little bit of cleanup

2007-09-08 20:33  arthur

	* [r385] nslcd/ldap-nss.c: fix endless loop bug

2007-09-08 19:15  arthur

	* [r384] nslcd/alias.c, nslcd/attmap.c, nslcd/attmap.h,
	  nslcd/cfg.c, nslcd/cfg.h, nslcd/ether.c, nslcd/group.c,
	  nslcd/host.c, nslcd/ldap-nss.c, nslcd/ldap-nss.h,
	  nslcd/netgroup.c, nslcd/network.c, nslcd/passwd.c,
	  nslcd/protocol.c, nslcd/rpc.c, nslcd/service.c, nslcd/shadow.c,
	  nslcd/util.c: move base and scope handling to database specific
	  modules, gettting rid of ldap_service_search_descriptor

2007-09-08 15:19  arthur

	* [r383] nslcd/alias.c, nslcd/attmap.c, nslcd/attmap.h,
	  nslcd/cfg.c, nslcd/cfg.h, nslcd/ether.c, nslcd/group.c,
	  nslcd/host.c, nslcd/ldap-nss.c, nslcd/netgroup.c,
	  nslcd/network.c, nslcd/passwd.c, nslcd/protocol.c, nslcd/rpc.c,
	  nslcd/service.c, nslcd/shadow.c, nslcd/util.c: move filters
	  definitions to the database modules themselves (and already
	  define base and scope but don't use them yet)

2007-09-07 20:51  arthur

	* [r382] nslcd/alias.c, nslcd/ether.c, nslcd/group.c, nslcd/host.c,
	  nslcd/ldap-nss.c, nslcd/ldap-nss.h, nslcd/netgroup.c,
	  nslcd/network.c, nslcd/passwd.c, nslcd/protocol.c, nslcd/rpc.c,
	  nslcd/service.c, nslcd/shadow.c: make handling of ent_context
	  consistent and simpler

2007-09-07 19:57  arthur

	* [r381] nslcd/alias.c, nslcd/ether.c, nslcd/host.c,
	  nslcd/network.c, nslcd/passwd.c, nslcd/protocol.c, nslcd/rpc.c,
	  nslcd/service.c, nslcd/shadow.c, nslcd/util.h: properly
	  initialize all contexts

2007-09-07 19:56  arthur

	* [r380] nslcd/ldap-nss.h: remove struct ldap_args stuff

2007-09-07 19:41  arthur

	* [r379] nslcd/group.c: remove last usage of struct ldap_args and
	  add FIXME

2007-09-07 19:36  arthur

	* [r378] nslcd/Makefile.am, nslcd/alias.c, nslcd/cfg.c,
	  nslcd/ether.c, nslcd/group.c, nslcd/host.c, nslcd/ldap-nss.c,
	  nslcd/ldap-schema.c, nslcd/ldap-schema.h, nslcd/netgroup.c,
	  nslcd/network.c, nslcd/passwd.c, nslcd/protocol.c, nslcd/rpc.c,
	  nslcd/service.c, nslcd/shadow.c, nslcd/util.c: remove the
	  ldap-schema.[ch] files since this is now fully implemented in the
	  database specific files

2007-09-07 11:10  arthur

	* [r377] nslcd/alias.c, nslcd/ether.c, nslcd/group.c, nslcd/host.c,
	  nslcd/ldap-nss.c, nslcd/ldap-nss.h, nslcd/ldap-schema.c,
	  nslcd/netgroup.c, nslcd/network.c, nslcd/passwd.c,
	  nslcd/protocol.c, nslcd/rpc.c, nslcd/service.c, nslcd/shadow.c:
	  also pass search filter for the *_all() functions from the
	  database module instead of doing it in ldap-nss.c

2007-09-07 09:28  arthur

	* [r376] nslcd/alias.c, nslcd/ether.c, nslcd/group.c, nslcd/host.c,
	  nslcd/netgroup.c, nslcd/network.c, nslcd/passwd.c,
	  nslcd/protocol.c, nslcd/rpc.c, nslcd/service.c, nslcd/shadow.c:
	  rename attlst stuff to attrs since that is the name of the
	  parameter that is passed

2007-09-07 08:41  arthur

	* [r375] nslcd/alias.c, nslcd/common.c, nslcd/common.h,
	  nslcd/ether.c, nslcd/group.c, nslcd/host.c, nslcd/ldap-nss.c,
	  nslcd/ldap-nss.h, nslcd/ldap-schema.c, nslcd/ldap-schema.h,
	  nslcd/netgroup.c, nslcd/network.c, nslcd/passwd.c,
	  nslcd/protocol.c, nslcd/rpc.c, nslcd/service.c, nslcd/shadow.c,
	  nslcd/util.h: move some of the filter code to the database
	  specific modules to be able to reduce complexity of ldap-nss.c
	  later on

2007-09-05 20:53  arthur

	* [r374] man/Makefile.am: clean generated manual pages in
	  maintainer-clean target

2007-09-03 21:47  arthur

	* [r373] nslcd/alias.c, nslcd/ether.c, nslcd/group.c, nslcd/host.c,
	  nslcd/netgroup.c, nslcd/network.c, nslcd/passwd.c,
	  nslcd/protocol.c, nslcd/rpc.c, nslcd/service.c, nslcd/shadow.c:
	  include service name in attlst storage and functions

2007-09-03 20:53  arthur

	* [r372] nslcd/ldap-nss.c: remove sigpipe handling code since
	  sigpipe is ignored throughout the program

2007-08-27 19:38  arthur

	* [r371] man/Makefile.am: always ship docbook sources and generated
	  manual pages and always install manual pages (even without
	  docbook2x-man)

2007-08-27 19:37  arthur

	* [r370] INSTALL, autogen.sh, depcomp, install-sh, missing,
	  mkinstalldirs: upgrade to using automake 1.10

2007-08-27 19:35  arthur

	* [r369] configure.ac: use AM_PROG_CC_C_O to have per-target
	  compiler flags

2007-08-26 20:19  arthur

	* [r366] ChangeLog, NEWS, TODO, configure.ac, debian/changelog,
	  man/nslcd.8.xml, man/nss-ldapd.conf.5.xml: get files ready for
	  0.3 release

2007-08-26 14:51  arthur

	* [r365] Makefile.am: workaround for problems splint has in parsing
	  system header files

2007-08-26 14:05  arthur

	* [r364] nslcd/cfg.h, nslcd/ldap-nss.h: move enum ldap_map_selector
	  and struct ldap_service_search_descriptor from ldap-nss.h to
	  cfg.h

2007-08-25 13:21  arthur

	* [r363] debian/libnss-ldapd.postinst: fix handling of configfile
	  values with spaces and symbols that could cause problems with sed

2007-08-25 11:52  arthur

	* [r362] debian/libnss-ldapd.postinst: change regular expression
	  boundry to | instead of % because it is less likely to appear
	  with normal use

2007-08-25 11:51  arthur

	* [r361] debian/libnss-ldapd.config: clear password informating in
	  Debconf database if binddn is not used

2007-08-19 15:38  arthur

	* [r360] tests, tests/Makefile.am, tests/test_cfg.c: add some
	  checks for the configuration module

2007-08-19 14:26  arthur

	* [r359] configure.ac, tests/Makefile.am, tests/dict,
	  tests/test_dict.c, tests/test_tio.c, tests/tio: move dict and tio
	  tests into the tests directory

2007-08-19 14:12  arthur

	* [r358] debian/po/pt.po: include updated Portugese translation by
	  Américo Monteiro <a_monteiro@netcabo.pt>

2007-08-19 14:11  arthur

	* [r357] debian/po/templates.pot: change Project-Id-Version project
	  name

2007-08-19 14:09  arthur

	* [r356] debian/po/ca.po, debian/po/cs.po, debian/po/da.po,
	  debian/po/de.po, debian/po/es.po, debian/po/fr.po,
	  debian/po/ja.po, debian/po/nl.po, debian/po/pt.po,
	  debian/po/pt_BR.po, debian/po/ru.po, debian/po/sv.po,
	  debian/po/templates.pot, debian/po/vi.po: update
	  Project-Id-Version and Report-Msgid-Bugs-To headers

2007-08-19 14:08  arthur

	* [r355] debian/copyright, m4/acx_pthread.m4: include newer version
	  of acx_pthread.m4

2007-08-19 13:28  arthur

	* [r354] README: add a note about case-sensitivity of NSS and LDAP
	  databases

2007-08-19 11:19  arthur

	* [r353] debian/libnss-ldapd.config, debian/libnss-ldapd.postinst:
	  fix some bugs in mangling of configfile and be more cautious
	  about replacing values (only replace first occurrence and only
	  match options with the correct number of options)

2007-08-19 11:00  arthur

	* [r352] debian/libnss-ldapd.postinst: remove passwords from
	  configfile if the [root]binddn option was removed and always
	  unset the passwd in the debconf database

2007-08-19 10:54  arthur

	* [r351] config.guess, config.sub: include updated files

2007-08-19 09:22  arthur

	* [r350] debian/libnss-ldapd.postinst: no longer use
	  /etc/libnss-ldap.conf as a basis for creating a new configuration
	  file since the syntax is no longer compatible

2007-08-19 09:16  arthur

	* [r349] debian/libnss-ldapd.postinst: only restart nscd on
	  configure

2007-08-19 09:11  arthur

	* [r348] debian/libnss-ldapd.config, debian/libnss-ldapd.postinst,
	  debian/libnss-ldapd.templates, debian/po/ca.po, debian/po/cs.po,
	  debian/po/da.po, debian/po/de.po, debian/po/es.po,
	  debian/po/fr.po, debian/po/ja.po, debian/po/nl.po,
	  debian/po/pt.po, debian/po/pt_BR.po, debian/po/ru.po,
	  debian/po/sv.po, debian/po/templates.pot, debian/po/vi.po: remove
	  the ldap-version question as it should be unneeded in the most
	  common installations (where it needs to be set the whole config
	  is likely te need tweaking)

2007-08-18 20:56  arthur

	* [r347] debian/libnss-ldapd.templates, debian/po/ca.po,
	  debian/po/cs.po, debian/po/da.po, debian/po/de.po,
	  debian/po/es.po, debian/po/fr.po, debian/po/ja.po,
	  debian/po/nl.po, debian/po/pt.po, debian/po/pt_BR.po,
	  debian/po/ru.po, debian/po/sv.po, debian/po/templates.pot,
	  debian/po/vi.po: rephrase the uri question and add some more
	  pointers on how to specify the value

2007-08-18 20:47  arthur

	* [r346] debian/libnss-ldapd.nslcd.init: change remaining reference
	  to $PIDFILE into $NSLCD_PIDFILE

2007-08-18 20:11  arthur

	* [r345] nslcd/ldap-nss.c: fix a couple of uses of per-map bases
	  that could be NULL and remove the ldap_proxy_bind_args that
	  wasn't used anywhere

2007-08-18 19:37  arthur

	* [r344] man/nslcd.8.xml: replace remaining \- with -

2007-08-18 19:35  arthur

	* [r343] configure.ac, man/nss-ldapd.conf.5.xml, nslcd/attmap.c,
	  nslcd/attmap.h, nslcd/cfg.c, nslcd/cfg.h, nslcd/ldap-nss.c,
	  nslcd/ldap-schema.h, nslcd/nslcd.c, nss-ldapd.conf: rewrite
	  configuration file handling to be simpler and more consistent,
	  this does mean that the syntax of the configfile has changed from
	  the PADL one and that some options were removed (also update
	  manual page and sample config file to reflect changes)

2007-08-03 08:13  arthur

	* [r342] nslcd/cfg.c, nslcd/cfg.h, nslcd/group.c: remove
	  nss_initgroups and nss_initgroups_ignoreusers configfile options

2007-08-03 07:21  arthur

	* [r341] HACKING, README: documentation improvements

2007-08-03 07:20  arthur

	* [r340] README, configure.ac, man/nss-ldapd.conf.5.xml,
	  nslcd/cfg.c, nslcd/cfg.h, nslcd/ldap-nss.c, nslcd/ldap-nss.h:
	  remove --enable-paged-results configure option and now always do
	  runtime configuration, remove nss_paged_results configfile option
	  and use pagesize option to specify usage of paging or not

2007-08-02 21:59  arthur

	* [r339] README: some spelling fixes, added a section on
	  unsupported features and rephrased default LDAP schema
	  objectclasses as filters

2007-07-31 13:54  arthur

	* [r338] Makefile.am, configure.ac, debian/control, man,
	  man/Makefile.am, man/nslcd.8.xml, man/nss-ldapd.conf.5.xml,
	  nslcd.8, nss-ldapd.conf.5: switch to using docbook for manual
	  pages, use docbook2x-man for generating the manual pages and
	  update the nss-ldapd.conf manual page slightly

2007-07-28 16:20  arthur

	* [r337] nslcd/alias.c, nslcd/cfg.h, nslcd/ether.c, nslcd/group.c,
	  nslcd/host.c, nslcd/ldap-nss.c, nslcd/ldap-nss.h,
	  nslcd/ldap-schema.c, nslcd/ldap-schema.h, nslcd/netgroup.c,
	  nslcd/network.c, nslcd/passwd.c, nslcd/protocol.c, nslcd/rpc.c,
	  nslcd/service.c, nslcd/shadow.c: define the list of attributes to
	  look up in searches in the service modules instead of in
	  ldap-schema

2007-07-28 14:57  arthur

	* [r336] nslcd/attmap.h: fix typo in comment

2007-07-27 09:54  arthur

	* [r334] nslcd.h: fix typo

2007-07-26 20:11  arthur

	* [r332] nslcd/cfg.c, nslcd/ldap-schema.h: remove some more old
	  mapping stuff and change configuration file keyword to map with
	  the new syntax

2007-07-26 19:34  arthur

	* [r331] nslcd/alias.c, nslcd/attmap.c, nslcd/attmap.h,
	  nslcd/cfg.c, nslcd/cfg.h, nslcd/ether.c, nslcd/group.c,
	  nslcd/host.c, nslcd/ldap-nss.c, nslcd/netgroup.c,
	  nslcd/network.c, nslcd/passwd.c, nslcd/protocol.c, nslcd/rpc.c,
	  nslcd/service.c, nslcd/shadow.c: switch to the new attribute
	  mapping code

2007-07-26 16:00  arthur

	* [r330] nslcd/cfg.c, nslcd/cfg.h, nslcd/ldap-nss.c,
	  nslcd/ldap-nss.h, nslcd/ldap-schema.c: get rid of default and
	  override attribute value mappings and remove host and port
	  configuration options

2007-07-26 11:58  arthur

	* [r329] nslcd/ldap-nss.c, nslcd/ldap-nss.h, nslcd/shadow.c: move
	  some shadow specific functions to shadow.c

2007-07-26 11:57  arthur

	* [r328] nslcd/cfg.c, nslcd/cfg.h: make function
	  _nss_ldap_add_uri() static

2007-07-24 15:36  arthur

	* [r327] nslcd/ldap-nss.c, nslcd/ldap-nss.h, nslcd/ldap-schema.c:
	  remove some more unused code

2007-07-24 13:38  arthur

	* [r326] nslcd/Makefile.am, nslcd/alias.c, nslcd/attmap.c,
	  nslcd/attmap.h, nslcd/cfg.c, nslcd/ether.c, nslcd/group.c,
	  nslcd/host.c, nslcd/ldap-nss.c, nslcd/ldap-nss.h,
	  nslcd/ldap-schema.c, nslcd/ldap-schema.h, nslcd/netgroup.c,
	  nslcd/network.c, nslcd/passwd.c, nslcd/protocol.c, nslcd/rpc.c,
	  nslcd/service.c, nslcd/shadow.c, nslcd/util.c: switch to a new
	  interface for doing attribute mapping, splitting the attribute
	  mapping stuff into a separate file

2007-07-24 10:13  arthur

	* [r325] nslcd/cfg.c, nslcd/ldap-schema.c, nslcd/ldap-schema.h: get
	  rid of some unused attribute mappings and a small reorganisation
	  of code

2007-07-24 06:52  arthur

	* [r324] debian/libnss-ldapd.templates, debian/po/ca.po,
	  debian/po/cs.po, debian/po/da.po, debian/po/de.po,
	  debian/po/es.po, debian/po/fr.po, debian/po/ja.po,
	  debian/po/nl.po, debian/po/pt.po, debian/po/pt_BR.po,
	  debian/po/ru.po, debian/po/sv.po, debian/po/templates.pot,
	  debian/po/vi.po: rephrase nsswitch.conf question and removed
	  reference to example file we don't ship

2007-07-24 06:40  arthur

	* [r323] debian/copyright, nslcd/Makefile.am, nslcd/cfg.c,
	  nslcd/cfg.h, nslcd/dnsconfig.c, nslcd/dnsconfig.h,
	  nslcd/resolve.c, nslcd/resolve.h, nss-ldapd.conf.5: get rid of
	  dnsconfig stuff since that probably didn't work anyway and it
	  cleans up some stuff

2007-07-23 20:24  arthur

	* [r315] common/dict.c, tests/dict/test_dict.c: fix a serious bug
	  in dict_values_next() that would return map pointers instead of
	  values and write a test for it

2007-07-23 15:23  arthur

	* [r314] debian/rules: use stricter distclean run in clean target
	  as suggested by lintian

2007-07-23 14:42  arthur

	* [r313] common/dict.c, common/dict.h, tests/dict/test_dict.c: add
	  support for removing entries from a DICT by setting the value to
	  NULL (this does not free any memory)

2007-07-21 14:04  arthur

	* [r310] AUTHORS: include translater of debconf templates to French

2007-07-18 07:12  arthur

	* [r309] debian/po/fr.po: typo fix by Cyril Brulebois
	  <cyril.brulebois@enst-bretagne.fr>

2007-07-16 19:29  arthur

	* [r308] debian/po/fr.po: update French (fr) translation of debconf
	  templates by Cyril Brulebois <cyril.brulebois@enst-bretagne.fr>

2007-07-15 21:40  arthur

	* [r307] tests/tio/test_tio.c: disable test that will always fail

2007-07-15 21:37  arthur

	* [r306] common/tio.c: fix typo

2007-07-15 21:35  arthur

	* [r305] common/tio.c: fix bug with buffer magic in writing code

2007-07-14 09:33  arthur

	* [r304] AUTHORS, debian/copyright, debian/po/pt.po: add Portuguese
	  (pt) translation of debconf templates by Américo Monteiro
	  <a_monteiro@netcabo.pt>

2007-07-13 09:45  arthur

	* [r303] tests/dict/Makefile.am, tests/tio/Makefile.am: do the
	  simple unit tests at make check time

2007-07-13 09:31  arthur

	* [r302] Makefile.am: don't include config diretory which we don't
	  use

2007-07-13 08:44  arthur

	* [r301] common/tio.c: add const and add FIXME about a to-be-fixed
	  race condition

2007-07-13 08:42  arthur

	* [r300] nss/networks.c: flag the address family parameter as
	  unused

2007-07-13 08:26  arthur

	* [r299] README: add notes about format of host and ethers entries
	  in LDAP database

2007-07-13 08:17  arthur

	* [r298] debian/control: add XS-Vcs-Svn and XS-Vcs-Browser as
	  specified in #391023

2007-06-18 08:46  arthur

	* [r297] nslcd/nslcd.c: add comment explaining the use of chmod()
	  over fchmod()

2007-06-17 16:48  arthur

	* [r294] ChangeLog, NEWS, configure.ac, debian/changelog,
	  nss-ldapd.conf.5: get files ready for 0.2.1 release

2007-06-17 14:05  arthur

	* [r293] Makefile.am: do proper wildcard expansion

2007-06-17 14:05  arthur

	* [r292] Makefile.am, nss/Makefile.am: add proper support for make
	  uninstall

2007-06-17 13:31  arthur

	* [r291] autogen.sh: force regeneration of all files

2007-06-17 13:27  arthur

	* [r290] Makefile.am, autogen.sh, configure.ac: include stuff from
	  the m4 directory automatically

2007-06-17 13:20  arthur

	* [r289] common/Makefile.am, nslcd/Makefile.am, nss/Makefile.am,
	  tests/Makefile.am, tests/dict/Makefile.am, tests/tio/Makefile.am:
	  support building outside the source directory

2007-06-17 12:43  arthur

	* [r288] Makefile.am, configure.ac, debian/copyright, m4,
	  m4/acx_pthread.m4, nslcd/Makefile.am: use the ACX_PTHREAD macro
	  to check for platform independant pthread support and required
	  options

2007-06-17 12:35  arthur

	* [r287] debian/copyright: further clarification of use of
	  autoconf/automake code

2007-06-16 23:10  arthur

	* [r286] nslcd/nslcd.c: change fchmod() into chmod() since fchmod()
	  has undifined behaviour on named sockets (fails silently)

2007-06-12 09:09  arthur

	* [r285] common/dict.c, nslcd/ldap-nss.c, nslcd/ldap-schema.c,
	  nslcd/util.c: fix casts of types where needed

2007-06-12 09:06  arthur

	* [r284] nslcd/host.c: fix type of host address and handle errors
	  in writing hostent

2007-06-11 18:44  arthur

	* [r280] ChangeLog, NEWS, TODO, configure.ac, debian/changelog,
	  nss-ldapd.conf.5: get files ready for 0.2 release

2007-06-11 18:40  arthur

	* [r279] common/Makefile.am, common/dict.c, common/dict.h,
	  nslcd/Makefile.am, nslcd/cfg.h, nslcd/dict.c, nslcd/dict.h,
	  tests/dict/Makefile.am, tests/dict/test_dict.c: move dict into
	  the common directory

2007-06-11 18:34  arthur

	* [r278] nss-ldapd.conf.5: add a note about the status of this
	  manual page

2007-06-10 16:58  arthur

	* [r277] common/Makefile.am: compile tio module with -fPIC because
	  it is used in the NSS shared library

2007-06-10 16:50  arthur

	* [r276] debian/libnss-ldapd.postinst: add note about modifying
	  /etc/nsswitch.conf in postinst

2007-06-09 17:35  arthur

	* [r275] Makefile.am: have better rules to generate ChangeLog

2007-06-09 16:54  arthur

	* [r274] common/tio.h: remove some trailing spaces

2007-06-09 16:50  arthur

	* [r273] nss-ldapd.conf.5: add proper copyright header

2007-06-08 22:57  arthur

	* [r272] Makefile.am, common, common/Makefile.am, common/tio.c,
	  common/tio.h, configure.ac, nslcd-common.h, nslcd/Makefile.am,
	  nslcd/alias.c, nslcd/common.h, nslcd/ether.c, nslcd/group.c,
	  nslcd/host.c, nslcd/ldap-nss.c, nslcd/ldap-nss.h,
	  nslcd/netgroup.c, nslcd/network.c, nslcd/nslcd.c, nslcd/passwd.c,
	  nslcd/protocol.c, nslcd/rpc.c, nslcd/service.c, nslcd/shadow.c,
	  nslcd/util.c, nslcd/util.h, nss/Makefile.am, nss/aliases.c,
	  nss/common.c, nss/common.h, nss/ethers.c, nss/group.c,
	  nss/hosts.c, nss/netgroup.c, nss/networks.c, nss/passwd.c,
	  nss/protocols.c, nss/rpc.c, nss/services.c, nss/shadow.c,
	  tests/Makefile.am, tests/tio, tests/tio/Makefile.am,
	  tests/tio/test_tio.c: implement our own stdio-like library that
	  handles IO with a simple configurable timeout mechanism with
	  buffering

2007-06-05 21:48  arthur

	* [r271] NEWS, README, configure.ac, tests/dict/test_dict.c: some
	  remaining tabs to spaces and trim trailing spaces

2007-06-02 15:28  arthur

	* [r270] configure.ac, debian/copyright: fix some remaining
	  references to the GNU Library General Public License

2007-06-01 21:40  arthur

	* [r269] nslcd/nslcd.c: add some comments describing some problems
	  that this code may have

2007-05-20 16:25  arthur

	* [r268] HACKING: add a section on build dependencies

2007-05-13 19:52  arthur

	* [r267] config.guess, config.sub: include updated files

2007-03-05 22:42  arthur

	* [r266] ., Makefile.am: include some targets to tun flawfinder,
	  pscan, rats and splint

2007-03-04 20:03  arthur

	* [r265] nslcd-common.h, nslcd/alias.c, nslcd/ether.c,
	  nslcd/group.c, nslcd/ldap-nss.c, nslcd/ldap-nss.h,
	  nslcd/ldap-schema.c, nslcd/ldap-schema.h, nslcd/log.c,
	  nslcd/nslcd.c, nslcd/passwd.c, nslcd/protocol.c, nslcd/rpc.c,
	  nslcd/shadow.c, nslcd/util.c, nslcd/util.h, nss/common.c,
	  nss/common.h, nss/group.c, nss/hosts.c, nss/netgroup.c,
	  nss/networks.c, nss/prototypes.h, nss/services.c: code
	  improvements by making type casts explicit, flagging ignored
	  return values, renames and flagging of parameters and some
	  miscelanious improvements (thanks to gcc warnings, splint, rats
	  and flawfinder)

2007-03-02 21:17  arthur

	* [r264] nslcd/ldap-nss.c: remove runtime checking for existance of
	  /lib/init/rw/libnss-ldap.bind_policy_soft

2007-03-02 20:40  arthur

	* [r263] nss-ldapd.conf: add missing attribute mapping for AD

2007-03-02 20:37  arthur

	* [r262] nslcd/nslcd.c: do chmod on file descriptor instead of on
	  file name

2007-02-17 12:08  arthur

	* [r251] nslcd-common.h, nslcd/cfg.c, nss/hosts.c: fix a few bugs
	  found thanks to the new warnings

2007-02-17 12:07  arthur

	* [r250] compat, compat/attrs.h, nslcd/cfg.h, nslcd/common.h,
	  nslcd/dict.h, nslcd/log.h, nslcd/nslcd.c, nss/Makefile.am,
	  nss/common.h, nss/ethers.c, nss/group.c, nss/hosts.c,
	  nss/netgroup.c, nss/networks.c, nss/passwd.c, nss/protocols.c,
	  nss/rpc.c, nss/services.c, nss/shadow.c, tests/dict/test_dict.c,
	  tests/test_aliases.c: add gcc attributes to some functions and
	  parameters

2007-02-17 12:00  arthur

	* [r249] configure.ac: add some extra type checks and worarounds

2007-02-17 12:00  arthur

	* [r248] configure.ac: add extra compiler warnings

2007-02-10 08:13  arthur

	* [r240] nslcd/dnsconfig.c, nslcd/ldap-nss.c, nslcd/ldap-nss.h,
	  nslcd/ldap-schema.c, nslcd/util.c: replace syslog calls to calls
	  with our own logging module

2007-02-06 22:27  arthur

	* [r237] README: fix a typo and update copyright info

2007-02-04 22:42  arthur

	* [r236] configure.ac, tests/Makefile.am, tests/dict,
	  tests/dict/Makefile.am, tests/dict/test_dict.c: add simple test
	  for dict module

2007-02-04 22:31  arthur

	* [r235] nslcd/dict.c: fix list corruption bug in dict_put() and
	  ignore setting value to NULL

2007-02-04 22:30  arthur

	* [r234] nslcd/dict.c, nslcd/dict.h: don't store const void * as
	  value, just void *

2007-02-01 22:12  arthur

	* [r233] nslcd/util.c, nslcd/util.h: declare old dict functions
	  static as thay are only used from within util.c

2007-02-01 22:03  arthur

	* [r232] nslcd/dict.h, nslcd/ldap-nss.h: trim trailing whitespace

2007-02-01 21:51  arthur

	* [r231] nslcd/Makefile.am, nslcd/cfg.c, nslcd/cfg.h, nslcd/dict.c,
	  nslcd/dict.h, nslcd/ldap-nss.c, nslcd/util.c, nslcd/util.h: add
	  new dictionary module and use it for the attribute mapping stuff

2007-02-01 21:13  arthur

	* [r230] nslcd/Makefile.am, nslcd/log.c, nslcd/xmalloc.c,
	  nslcd/xmalloc.h: get rid of xmalloc.[ch]

2007-01-17 22:40  arthur

	* [r229] nss/Makefile.am: no longer install libc-versioned symlink
	  and hardcode nss soname because we will likely need to change our
	  code if the ABI changes

2007-01-17 22:23  arthur

	* [r228] debian/rules: in Debian package install NSS files in
	  /usr/lib instead of /lib

2007-01-17 22:16  arthur

	* [r227] nss/aliases.c, nss/common.h, nss/ethers.c, nss/group.c,
	  nss/hosts.c, nss/netgroup.c, nss/networks.c, nss/passwd.c,
	  nss/protocols.c, nss/rpc.c, nss/services.c, nss/shadow.c: ensure
	  that all NSS functions can be generated by the marcos in common.h
	  and spell out the read_..() function for every type

2007-01-17 21:54  arthur

	* [r226] debian/copyright: indent license blubs and include license
	  information for nslcd/resolve.[ch]

2007-01-17 21:53  arthur

	* [r225] nslcd.h: add a little bit more documentation

2007-01-17 16:10  arthur

	* [r224] nslcd/cfg.c: remove a const where it really wasn't

2007-01-17 16:03  arthur

	* [r223] nslcd/cfg.c, nslcd/cfg.h, nslcd/group.c, nslcd/ldap-nss.c,
	  nslcd/util.c, nslcd/util.h: move most config code into cfg.c,
	  clean up dictornary stuff in util.c and do some more smaller
	  restructuring

2007-01-17 15:35  arthur

	* [r222] nslcd/group.c, nslcd/ldap-nss.h, nslcd/util.c,
	  nslcd/util.h: move name_list stuff to group.c as that is the only
	  place it's used at the moment

2007-01-17 15:29  arthur

	* [r221] nslcd/netgroup.c: replace __netgrent with mynetgrent
	  removing the fields that are not used

2007-01-17 13:16  arthur

	* [r220] nslcd/Makefile.am, nslcd/cfg.c, nslcd/cfg.h,
	  nslcd/ldap-nss.c, nslcd/ldap-nss.h, nslcd/ldap-schema.h,
	  nslcd/util.c, nslcd/util.h: first step to split out all
	  configuration stuff into separate file

2007-01-17 12:51  arthur

	* [r219] nslcd/ldap-nss.c, nslcd/ldap-nss.h: get rid of more code
	  that would check if the socket was changed from under us by our
	  caller

2007-01-17 12:14  arthur

	* [r218] nslcd/ldap-nss.c: get rid of rebinding-on-fork() logic as
	  our threading model is very predictable

2007-01-10 22:50  arthur

	* [r217] nslcd/netgroup.c: write a final result code of
	  NSLCD_RESULT_NOTFOUND for netgroup lookups

2007-01-10 22:48  arthur

	* [r216] nss/netgroup.c, nss/prototypes.h: fix netgroup lookups so
	  that _nss_ldap_getnetgrent_r() returns NSS_STATUS_RETURN if there
	  are no more entries to return but there was a first entry

2007-01-09 21:21  arthur

	* [r215] COPYING, Makefile.am, README, configure.ac,
	  debian/copyright, debian/libnss-ldapd.nslcd.init, nslcd-common.h,
	  nslcd.8, nslcd.h, nslcd/Makefile.am, nslcd/alias.c,
	  nslcd/common.c, nslcd/common.h, nslcd/dnsconfig.c,
	  nslcd/dnsconfig.h, nslcd/ether.c, nslcd/group.c, nslcd/host.c,
	  nslcd/ldap-nss.c, nslcd/ldap-nss.h, nslcd/ldap-schema.c,
	  nslcd/ldap-schema.h, nslcd/log.c, nslcd/log.h, nslcd/netgroup.c,
	  nslcd/network.c, nslcd/nslcd.c, nslcd/pagectrl.c,
	  nslcd/pagectrl.h, nslcd/passwd.c, nslcd/protocol.c, nslcd/rpc.c,
	  nslcd/service.c, nslcd/shadow.c, nslcd/util.c, nslcd/util.h,
	  nslcd/xmalloc.c, nslcd/xmalloc.h, nss/Makefile.am, nss/aliases.c,
	  nss/common.c, nss/common.h, nss/ethers.c, nss/group.c,
	  nss/hosts.c, nss/netgroup.c, nss/networks.c, nss/passwd.c,
	  nss/protocols.c, nss/prototypes.h, nss/rpc.c, nss/services.c,
	  nss/shadow.c, tests/Makefile.am, tests/test_aliases.c,
	  tests/test_ethers.c, tests/test_group.c, tests/test_hosts.c,
	  tests/test_netgroup.c, tests/test_networks.c,
	  tests/test_passwd.c, tests/test_protocols.c, tests/test_rpc.c,
	  tests/test_services.c, tests/test_shadow.c: change license from
	  GNU Library General Public License v.2 to GNU Lesser General
	  Public License v.2.1 with permission from Luke Howard

2007-01-08 22:26  arthur

	* [r214] nss/netgroup.c, nss/prototypes.h: use our own thread-local
	  file pointer for doing requests instead of misusing the data
	  field in the __netgrent struct

2007-01-08 16:04  arthur

	* [r213] debian/control: add a provide line for libnss-ldap so we
	  can seamlessly replace it (it should provide the same
	  functionality)

2007-01-08 15:42  arthur

	* [r212] debian/libnss-ldapd.postinst: only modify nsswitch
	  databases we support, leave everything else alone (e.g.
	  automount)

2007-01-02 08:06  arthur

	* [r211] debian/libnss-ldapd.nslcd.init: change description in init
	  script

2006-12-31 10:05  arthur

	* [r210] nslcd-common.h: if the string to write is NULL, write an
	  empty string

2006-12-31 10:03  arthur

	* [r209] nslcd-common.h: ensure that all arrays that are allocated
	  in the buffer are now aligned to the pointer size

2006-12-31 10:02  arthur

	* [r208] nslcd-common.h, nss/hosts.c: extract some more common
	  macros

2006-12-30 10:50  arthur

	* [r207] nslcd/ldap-nss.c, tests/test_group.c: get rid of a few
	  warnings

2006-12-29 10:46  arthur

	* [r206] config.sub: update to newer version again (got lost in
	  r205)

2006-12-29 10:04  arthur

	* [r205] config.sub, nslcd/group.c, nslcd/ldap-nss.c,
	  nslcd/ldap-nss.h, nslcd/util.c: get rid of debug() function and
	  call log_log() instead

2006-12-27 09:48  arthur

	* [r204] nslcd-common.h, nslcd/alias.c, nslcd/common.h,
	  nslcd/ether.c, nslcd/group.c, nslcd/host.c, nslcd/netgroup.c,
	  nslcd/network.c, nslcd/passwd.c, nslcd/protocol.c, nslcd/rpc.c,
	  nslcd/service.c, nslcd/shadow.c: do not allocate new memory with
	  malloc() for each request with a string parameter but use a
	  buffer allocated on the stack instead (this simplifies free()-ing
	  the buffer(s) in case of problems)

2006-12-25 20:30  arthur

	* [r203] nslcd/dnsconfig.c, nslcd/group.c, nslcd/ldap-nss.c,
	  nslcd/ldap-nss.h, nslcd/passwd.c, nslcd/util.c, nslcd/util.h: get
	  rid of NSS_BUFSIZ, rename _nss_ldap_oc_check() to
	  has_objectclass(), redo _nss_ldap_escape_string() with simpler
	  logic and slightly different signature and redid layout of some
	  code

2006-12-23 11:50  arthur

	* [r201] ChangeLog, NEWS, TODO, configure.ac, debian/changelog: get
	  files ready for 0.1 release

2006-12-22 23:23  arthur

	* [r200] nslcd.8: fix name of configuration file and update date
	  and version number

2006-12-22 23:20  arthur

	* [r199] NEWS, TODO, nslcd/alias.c, nslcd/dnsconfig.c,
	  nslcd/dnsconfig.h, nslcd/ether.c, nslcd/group.c, nslcd/host.c,
	  nslcd/ldap-nss.c, nslcd/ldap-nss.h, nslcd/ldap-schema.c,
	  nslcd/ldap-schema.h, nslcd/netgroup.c, nslcd/network.c,
	  nslcd/pagectrl.c, nslcd/pagectrl.h, nslcd/passwd.c,
	  nslcd/protocol.c, nslcd/resolve.c, nslcd/resolve.h, nslcd/rpc.c,
	  nslcd/service.c, nslcd/shadow.c, nslcd/util.c, nslcd/util.h,
	  nss-ldapd.conf, nss-ldapd.conf.5, nss/exports.linux: remove last
	  keyword and disable keyword expansion

2006-12-22 10:56  arthur

	* [r198] nslcd/Makefile.am: make list of source files a little
	  clearer

2006-12-22 07:35  arthur

	* [r197] HACKING: change reference to directory name

2006-12-21 19:55  arthur

	* [r196] Makefile.am, configure.ac, debian/copyright, nslcd,
	  server: rename server directory to nslcd

2006-12-21 19:53  arthur

	* [r195] ChangeLog, Makefile.am: add code for generating ChangeLog
	  and add initial ChangeLog

2006-12-21 19:04  arthur

	* [r194] .: change trunk location in repository to match package
	  name

2006-12-21 10:12  arthur

	* [r193] server/alias.c, server/dnsconfig.c, server/dnsconfig.h,
	  server/ether.c, server/group.c, server/host.c, server/ldap-nss.c,
	  server/ldap-nss.h, server/ldap-schema.c, server/ldap-schema.h,
	  server/log.c, server/log.h, server/netgroup.c, server/network.c,
	  server/pagectrl.c, server/pagectrl.h, server/passwd.c,
	  server/protocol.c, server/rpc.c, server/service.c,
	  server/shadow.c, server/util.c, server/util.h, server/xmalloc.c,
	  server/xmalloc.h: normalize copyright headers

2006-12-20 11:51  arthur

	* [r192] debian/copyright: update copyright file with current
	  copyright information

2006-12-20 11:34  arthur

	* [r191] Makefile.am, nss/Makefile.am, server/Makefile.am,
	  tests/Makefile.am: properly capitalize company name

2006-12-20 11:10  arthur

	* [r190] README: fix wrapping

2006-12-20 11:08  arthur

	* [r189] README: integrate remaining parts in documentation

2006-12-20 09:14  arthur

	* [r188] Makefile.am, debian/libnss-ldapd.examples: ship
	  nss-ldapd.conf as an example in the Debian package

2006-12-19 22:31  arthur

	* [r187] ., debian/changelog, debian/control: change Debian source
	  package name to nss-ldapd

2006-12-19 22:28  arthur

	* [r186] Makefile.am: do not try to ship gone README.Debian but do
	  ship new HACKING

2006-12-19 15:04  arthur

	* [r185] nss-ldapd.conf: get rid of pam stuff

2006-12-19 15:03  arthur

	* [r184] HACKING, NEWS, README, TODO: first step at improving
	  documentation

2006-12-19 15:02  arthur

	* [r183] configure.ac, debian/changelog: change version number to
	  0.1

2006-12-19 14:03  arthur

	* [r182] debian/libnss-ldapd.postinst: change some tests with grep
	  to be correct, add some comments and improve import of old
	  configuration file

2006-12-19 13:55  arthur

	* [r181] debian/README.Debian: the README.Debian does not contain
	  any more relevant information

2006-12-19 12:10  arthur

	* [r180] server/nslcd.c: add TODO

2006-12-19 11:53  arthur

	* [r179] Makefile.am, configure.ac, debian/libnss-ldapd.config,
	  debian/libnss-ldapd.nslcd.init, debian/libnss-ldapd.postinst,
	  debian/libnss-ldapd.postrm, debian/rules, ldap.conf,
	  nss-ldapd.conf, nss-ldapd.conf.5, nss_ldap.5: change default
	  configuration file name to /etc/nss-ldapd.conf

2006-12-18 22:34  arthur

	* [r178] Makefile.am, nslcd.8: add initial nslcd manual page

2006-12-18 22:31  arthur

	* [r177] server/nslcd.c: output of --help no longer shows --config
	  option (which isn't there)

2006-12-18 22:30  arthur

	* [r176] configure.ac: change name of package also in configure

2006-12-18 21:54  arthur

	* [r175] debian/libnss-ldapd.config: handle cases where commands in
	  backticks return an error code

2006-12-18 21:32  arthur

	* [r174] nss/hosts.c: only set h_errno to error value on problems
	  and change the returned value in some cases

2006-12-17 22:30  arthur

	* [r173] debian/libnss-ldapd.nslcd.init: report process id in
	  status

2006-12-17 11:19  arthur

	* [r172] configure.ac, debian/changelog,
	  debian/libnss-ldapd.config, debian/libnss-ldapd.nslcd.init,
	  debian/libnss-ldapd.postinst, nss/common.h, server/nslcd.c,
	  tests/test_networks.c: remove trailing spaces

2006-12-17 11:18  arthur

	* [r171] nss/prototypes.h: add note about glibc manual

2006-12-17 11:14  arthur

	* [r170] nss/Makefile.am: fix comment as to installing libraries

2006-12-17 11:13  arthur

	* [r169] debian/control: add a snippet to the package description
	  as to what the main differences to libnss-ldap are

2006-12-17 07:27  arthur

	* [r168] debian/rules: move the nss libraries to /lib instead of
	  /usr/lib

2006-12-17 07:26  arthur

	* [r167] debian/rules: remove some unneeded configure options

2006-12-16 22:17  arthur

	* [r166] Makefile.am, debian/libnss-ldapd.lintian-overrides,
	  debian/rules: fix some lintian warnings regarding shared
	  libraries with an override file and generating shlibs for now

2006-12-16 22:15  arthur

	* [r165] debian/rules: fix configuration file manual page name

2006-12-16 22:13  arthur

	* [r164] debian/libnss-ldapd.templates, debian/po/ca.po,
	  debian/po/cs.po, debian/po/da.po, debian/po/de.po,
	  debian/po/es.po, debian/po/fr.po, debian/po/ja.po,
	  debian/po/nl.po, debian/po/pt_BR.po, debian/po/ru.po,
	  debian/po/sv.po, debian/po/templates.pot, debian/po/vi.po: end
	  every short description line with a colon (and run
	  debconf-updatepo) (thanks lintian)

2006-12-16 22:11  arthur

	* [r163] server/nslcd.c: set correct permissions on socket creation
	  and remove socket and pidfile on exit

2006-12-16 21:52  arthur

	* [r162] nss/exports.linux, nss/group.c, nss/prototypes.h,
	  tests/test_group.c: remove _nss_ldap_initgroups_dyn() from
	  interface for now because it is currently not working

2006-12-16 17:39  arthur

	* [r161] configure.ac: fix configure --help strings to be more
	  consistent and list default values

2006-12-16 16:40  arthur

	* [r160] Makefile.am: fix debian files to ship and split off those
	  files into a separate variable

2006-12-16 16:38  arthur

	* [r159] debian/po/POTFILES.in, debian/po/ca.po, debian/po/cs.po,
	  debian/po/da.po, debian/po/de.po, debian/po/es.po,
	  debian/po/fr.po, debian/po/ja.po, debian/po/nl.po,
	  debian/po/pt_BR.po, debian/po/ru.po, debian/po/sv.po,
	  debian/po/templates.pot, debian/po/vi.po: update po and pot files
	  based on current templates

2006-12-16 16:35  arthur

	* [r158] debian/config, debian/libnss-ldapd.config,
	  debian/libnss-ldapd.postinst, debian/libnss-ldapd.postrm,
	  debian/libnss-ldapd.templates, debian/rules, debian/templates:
	  redid Debian packaging: on installation a search is done for any
	  reasonable configuration information (existing nss_ldap config,
	  hostname info, etc), configuring nsswitch.conf is also done and
	  all files in the debian directory have more logical names

2006-12-16 16:25  arthur

	* [r157] Makefile.am, debian/libnss-ldapd.nslcd.init, debian/rules:
	  ship an init script for starting nslcd

2006-12-14 10:34  arthur

	* [r156] AUTHORS: fix format of AUTHORS file and include new
	  authors

2006-12-14 10:33  arthur

	* [r155] ANNOUNCE, README: include ANNOUNCE document in README

2006-12-14 10:32  arthur

	* [r154] ChangeLog, NEWS: rename ChangeLog to NEWS and change
	  formatting of file to follow common format

2006-12-13 16:07  arthur

	* [r153] NEWS, TODO: NEWS looks more like a TODO

2006-12-08 21:58  arthur

	* [r152] Makefile.am, debian/changelog, debian/control,
	  debian/libnss-ldapd.postinst, debian/rules: clean up Debian
	  packaging a bit

2006-12-08 21:45  arthur

	* [r151] tests/ldaptest.pl, tests/nsswitch.test, tests/testd.c,
	  tests/testgr.c, tests/testnss.c, tests/testpw.c, tests/testpw3.c,
	  tests/testpw4.c, tests/testpw5.c, tests/testpw6.c: get rid of old
	  test code (most of it should be covered by the new test code)

2006-12-08 19:40  arthur

	* [r150] .: ignore generated debuild files

2006-12-08 19:37  arthur

	* [r149] debian/po/ca.po, debian/po/cs.po, debian/po/da.po,
	  debian/po/de.po, debian/po/es.po, debian/po/fr.po,
	  debian/po/ja.po, debian/po/nl.po, debian/po/pt_BR.po,
	  debian/po/ru.po, debian/po/sv.po, debian/po/templates.pot,
	  debian/po/vi.po, debian/templates: do not make default values
	  translatable

2006-12-08 19:31  arthur

	* [r148] nss/common.c: fix indentation

2006-12-08 19:31  arthur

	* [r147] README, debian/LDAP-Permissions.txt, debian/examples,
	  debian/libnss-ldapd.docs: get rid of more documentation in an
	  attempt to include all useful documentation in one place

2006-12-08 19:04  arthur

	* [r146] Makefile.am, README, doc: reasonable configuration
	  information (existing nss_ldap config, parts in top-level README

2006-12-08 18:37  arthur

	* [r145] configure.ac, nslcd.h: specify socket and pidfile location
	  with configure script

2006-12-08 17:17  arthur

	* [r144] debian/po/ca.po, debian/po/cs.po, debian/po/da.po,
	  debian/po/de.po, debian/po/es.po, debian/po/fr.po,
	  debian/po/ja.po, debian/po/nl.po, debian/po/pt_BR.po,
	  debian/po/ru.po, debian/po/sv.po, debian/po/templates.pot,
	  debian/po/vi.po: run debconf-updatepo to get pot and po files in
	  a consistent state

2006-12-08 16:26  arthur

	* [r143] debian/control: get rid of cdbs build dependency

2006-12-07 12:18  arthur

	* [r142] debian, debian/README.Debian, debian/changelog,
	  debian/control, debian/libnss-ldap.dirs, debian/libnss-ldap.init,
	  debian/libnss-ldap.install, debian/libnss-ldap.links,
	  debian/libnss-ldap.postinst, debian/libnss-ldap.postrm,
	  debian/libnss-ldapd.docs, debian/libnss-ldapd.postinst,
	  debian/libnss-ldapd.postrm, debian/rules: initial step to get
	  working Debian packaging

2006-12-05 22:26  arthur

	* [r141] Makefile.am, compile, config.sub, configure.ac,
	  nss/Makefile.am, server/Makefile.am: clean up build scripts to
	  only link nslcd to OpenSSL and to cleanly create a nss_ldap.so
	  file

2006-12-05 22:25  arthur

	* [r140] server/ldap-nss.c, server/ldap-nss.h: get rid of
	  _nss_ldap_get_ld_errno() which wasn't used

2006-12-03 17:18  arthur

	* [r139] server/nslcd.c: fix logging levels and remove some
	  commented out code

2006-12-03 17:17  arthur

	* [r138] server/ldap-nss.c, server/ldap-schema.c, server/passwd.c:
	  get rid of some more unneeded code

2006-12-03 17:16  arthur

	* [r137] tests/Makefile.am: split out common files into own
	  variable and disable (comment out) protocol debugging

2006-12-03 17:15  arthur

	* [r136] nss/exports.linux: regenerate from prototypes.h

2006-11-30 17:52  arthur

	* [r135] server/Makefile.am, server/alias.c, server/common.h,
	  server/ether.c, server/group.c, server/host.c, server/ldap-nss.c,
	  server/netgroup.c, server/network.c, server/nslcd-server.c,
	  server/nslcd-server.h, server/nslcd.c, server/passwd.c,
	  server/protocol.c, server/rpc.c, server/service.c,
	  server/shadow.c, server/util.c: implement a simple threading
	  solution and move code from nslcd-server.c to nslcd.c

2006-11-28 16:21  arthur

	* [r134] nslcd.h, nss/aliases.c, nss/ethers.c, nss/group.c,
	  nss/passwd.c, nss/protocols.c, nss/rpc.c, nss/services.c,
	  nss/shadow.c, server/alias.c, server/ether.c, server/group.c,
	  server/passwd.c, server/protocol.c, server/rpc.c,
	  server/service.c, server/shadow.c: rename LDF_ marcos to NSLCD_
	  macros to have a single namespace

2006-11-28 15:44  arthur

	* [r133] server: ignore generated nslcd binary

2006-11-28 15:44  arthur

	* [r132] configure.ac: look for nslcd.h now since nslcd.c has been
	  moved into the server directory

2006-11-28 10:59  arthur

	* [r131] ., Makefile.am, configure.ac, exports.linux, log.c, log.h,
	  nslcd-common.h, nslcd-server.c, nslcd-server.h, nslcd.c,
	  nss/Makefile.am, nss/exports.linux, server, server/Makefile.am,
	  server/log.c, server/log.h, server/nslcd-server.c,
	  server/nslcd-server.h, server/nslcd.c, server/xmalloc.c,
	  server/xmalloc.h, testnss.c, tests, tests/Makefile.am,
	  tests/test_aliases.c, tests/test_ethers.c, tests/test_group.c,
	  tests/test_hosts.c, tests/test_netgroup.c, tests/test_networks.c,
	  tests/test_passwd.c, tests/test_protocols.c, tests/test_rpc.c,
	  tests/test_services.c, tests/test_shadow.c, tests/testnss.c,
	  xmalloc.c, xmalloc.h: get as many files from the root directory
	  as possible, moving all server related code to the server
	  directory and moving and splitting the test code to the tests
	  directory

2006-11-28 09:59  arthur

	* [r130] nslcd-server.c, nss/networks.c, server/network.c,
	  testnss.c: implement network name lookups on server side plus
	  some fixes on the client side

2006-11-28 09:54  arthur

	* [r129] nslcd-server.c, server/common.c: include config.h as first
	  statement

2006-11-28 09:45  arthur

	* [r128] nslcd-common.h: implement more detailed protocol logging
	  (dumping the actual byte values read and written)

2006-11-27 09:59  arthur

	* [r127] Makefile.am, nslcd-client.c, nslcd-client.h,
	  nss/Makefile.am, nss/aliases.c, nss/common.c, nss/common.h,
	  nss/ethers.c, nss/group.c, nss/hosts.c, nss/netgroup.c,
	  nss/networks.c, nss/passwd.c, nss/protocols.c, nss/rpc.c,
	  nss/services.c, nss/shadow.c: get rid of nslcd-client.{c,h} and
	  move it to nss/common.{c,h}, this ensures that all code that is
	  needed for the nss part is in the nss directory

2006-11-27 09:05  arthur

	* [r126] server/host.c, server/rpc.c: fix typos

2006-11-26 22:36  arthur

	* [r125] server/Makefile.am, server/dnsconfig.c,
	  server/dnsconfig.h, server/ether.c, server/group.c,
	  server/ldap-nss.c, server/ldap-nss.h, server/ldap-parse.h,
	  server/ldap-schema.c, server/ldap-schema.h, server/network.c,
	  server/passwd.c, server/util.c, server/util.h: clean up header
	  files

2006-11-26 12:01  arthur

	* [r124] doc/autofs-4.1.3-lookup-nssldap.patch,
	  doc/lookup_nssldap.c, ldap.conf, nslcd-server.c, nslcd-server.h,
	  nslcd.h, nss/Makefile.am, nss/automount.c, nss/prototypes.h,
	  server/Makefile.am, server/automount.c, server/ldap-nss.h,
	  server/ldap-schema.c, server/ldap-schema.h, server/rpc.c,
	  server/util.c, server/util.h: get rid of automount map
	  information lookups through NSS as this is not used (at least not
	  with glibc), autofs-ldap looks up the information on it's own
	  (but does parse /etc/nsswitch.conf)

2006-11-25 10:56  arthur

	* [r123] nslcd-server.c, nss/services.c, server/service.c,
	  testnss.c: implement server end of service name lookup and fix
	  client end to translate between host and network byte order and
	  to also pass protocol in request

2006-11-25 10:55  arthur

	* [r122] nslcd-common.h: fix bug that always causes a
	  READ_STRING_ALLOC to read to a variable called name

2006-11-25 10:09  arthur

	* [r121] nslcd-server.c, server/rpc.c, testnss.c: implement rpc
	  service on server side

2006-11-25 10:09  arthur

	* [r120] server/host.c: get rid of superfluous test

2006-11-25 10:08  arthur

	* [r119] server/protocol.c: only flush the stream after writing all
	  records

2006-11-25 09:16  arthur

	* [r118] nslcd-server.c, server/protocol.c, testnss.c: implement
	  protocol handling (server side)

2006-11-25 09:16  arthur

	* [r117] nslcd.h, nss/netgroup.c, nss/prototypes.h: trip trailing
	  whitespace

2006-11-25 08:07  arthur

	* [r116] nslcd-common.h: include stdio for definitions of fread(),
	  fwrite() etc

2006-11-24 11:10  arthur

	* [r115] nslcd-server.c, server/host.c, testnss.c: implement server
	  end of host name lookups (without IPv6 support sofar)

2006-11-24 11:03  arthur

	* [r114] nss/hosts.c: fix problem with allocated array for storing
	  addresses, properly set h_errnop and check empty address (only
	  addresses of other address family) in nss functions, not in
	  read_hostent()

2006-11-24 10:58  arthur

	* [r113] nslcd-common.h: make protocol logging a little more
	  readable and do not use fseek() in streams because that is not
	  supported

2006-11-22 13:16  arthur

	* [r112] server/alias.c, server/ether.c, server/group.c,
	  server/passwd.c, server/shadow.c: only flush the stream after
	  writing all records (not every time) and more logging consistency

2006-11-22 12:18  arthur

	* [r111] nslcd-server.c, server/shadow.c, testnss.c: implement
	  server end of shadow lookups

2006-11-22 12:17  arthur

	* [r110] server/alias.c, server/passwd.c: make logging a little bit
	  more consistent

2006-11-22 11:45  arthur

	* [r109] server/netgroup.c: add extra copyright information (the
	  exact same code was seen in glibc)

2006-11-21 16:45  arthur

	* [r108] nslcd-server.c, nslcd.h, nss/netgroup.c,
	  server/netgroup.c, testnss.c: implement netgroup lookups,
	  including test code

2006-11-19 15:49  arthur

	* [r107] nslcd.h: include a note about encoding of strings

2006-11-19 15:38  arthur

	* [r106] nslcd-server.c, server/ether.c: implement nslcd_ether_*()
	  functions

2006-11-19 15:37  arthur

	* [r105] nslcd-server.c, nslcd-server.h: create prototypes for all
	  server methods

2006-11-19 15:36  arthur

	* [r104] nss/ethers.c: write contents of ethernet address not
	  pointer

2006-11-19 08:57  arthur

	* [r103] server/group.c: add missing semicolon

2006-11-19 08:55  arthur

	* [r102] nslcd-common.h: add more verbose protocol logging,
	  including logging of errors

2006-11-19 08:54  arthur

	* [r101] ., debian, doc, nss, server, tests: ignore stale nfs files

2006-11-19 08:51  arthur

	* [r100] nss/common.h: fix bug: the readfn() function was executed
	  twice

2006-11-18 08:12  arthur

	* [r99] server/group.c, server/netgroup.c: some layout changes

2006-11-18 08:09  arthur

	* [r98] nslcd.h: include changes to handle protocol, rpc, service
	  and netgroup nslcd calls

2006-11-17 22:59  arthur

	* [r97] nss/Makefile.am, nss/netgroup.c, nss/prototypes.h:
	  implement netgroup lookups

2006-11-17 22:55  arthur

	* [r96] nss/aliases.c, nss/automount.c, nss/common.h, nss/ethers.c,
	  nss/group.c, nss/hosts.c, nss/networks.c, nss/passwd.c,
	  nss/protocols.c, nss/rpc.c, nss/services.c, nss/shadow.c: do some
	  refactoring in the generated code and add some documentation on
	  generated code in comments in common.h

2006-11-16 13:06  arthur

	* [r95] nss/Makefile.am, nss/services.c: implement reading of
	  services entities

2006-11-16 12:57  arthur

	* [r94] nss/Makefile.am, nss/rpc.c: implement reading of rpc
	  entities

2006-11-16 12:51  arthur

	* [r93] nss/Makefile.am, nss/protocols.c: implement reading of
	  protocol entities

2006-11-16 12:50  arthur

	* [r92] nss/aliases.c, nss/common.h, nss/ethers.c, nss/group.c,
	  nss/hosts.c, nss/networks.c, nss/passwd.c, nss/shadow.c: switch
	  to a simpler and more compact framework to generate methods (one
	  reader function to deserialize a struct from the stream and
	  auto-generated functions)

2006-11-15 15:06  arthur

	* [r91] nslcd.h, nss/Makefile.am, nss/networks.c, nss/prototypes.h:
	  implement network information lookups through NSS

2006-11-15 11:00  arthur

	* [r90] nss/hosts.c: properly filter out empty returned address
	  records and return NOTFOUND for entries without addresses in our
	  address family

2006-11-14 14:41  arthur

	* [r89] xmalloc.h: add xxmalloc() macro to simply allocate a
	  structure of a certain type

2006-11-14 14:40  arthur

	* [r88] nslcd.h, nss/Makefile.am, nss/automount.c,
	  nss/prototypes.h: implement automounter maps lookups

2006-11-14 14:40  arthur

	* [r87] nss/common.h: just close the stream in case of problems
	  instead of calling endent()

2006-11-11 15:38  arthur

	* [r86] server/group.c: include some other functions into lookup
	  functions to increase readability

2006-11-11 15:16  arthur

	* [r85] server/Makefile.am, server/alias.c, server/aliases.c,
	  server/automount.c, server/common.c, server/common.h,
	  server/ether.c, server/ethers.c, server/group.c, server/host.c,
	  server/hosts.c, server/ldap-nss.c, server/ldap-nss.h,
	  server/ldap-parse.h, server/ldap-schema.c, server/ldap-schema.h,
	  server/netgroup.c, server/network.c, server/networks.c,
	  server/passwd.c, server/protocol.c, server/protocols.c,
	  server/rpc.c, server/service.c, server/services.c,
	  server/shadow.c, server/util.c, server/util.h: fix naming and
	  copyright headers

2006-11-11 14:02  arthur

	* [r84] server/aliases.c, server/ldap-nss.c, server/ldap-nss.h,
	  server/util.c, server/util.h: simplify some functions to pass
	  file pointer around instead of struct and buffer (initially only
	  for alias_byname())

2006-11-11 07:17  arthur

	* [r83] server/ldap-nss.h: some reformatting

2006-11-10 15:36  arthur

	* [r82] nslcd.h, nss/Makefile.am, nss/aliases.c, nss/ethers.c,
	  nss/exports.h, nss/group.c, nss/hosts.c, nss/passwd.c,
	  nss/prototypes.h, nss/shadow.c, testnss.c: rename nss/exports.h
	  to nss/prototypes.h

2006-11-10 15:31  arthur

	* [r81] nss/exports.h, nss/group.c, nss/hosts.c, nss/passwd.c,
	  nss/shadow.c: switch to using prototypes that are defined in
	  glibc 2.3.6

2006-11-10 13:56  arthur

	* [r80] nslcd.h, nss/Makefile.am, nss/shadow.c, testnss.c:
	  implement NSS-side shadow lookups (plus test code)

2006-11-10 13:08  arthur

	* [r79] nslcd.h, nss/Makefile.am, nss/ethers.c, nss/exports.h,
	  testnss.c: implement NSS-side ethers database lookups plus test
	  code

2006-11-10 12:44  arthur

	* [r78] nss/exports.h, nss/hosts.c, testnss.c: add test code for
	  host database and add const to function definition

2006-11-10 11:51  arthur

	* [r77] nss/aliases.c, nss/group.c, nss/hosts.c: use better names
	  for our thread-local file pointer

2006-11-07 21:18  arthur

	* [r76] server/aliases.c: expand some marcos and combine some code

2006-11-07 21:06  arthur

	* [r75] server/passwd.c: expand some marcos and combine some code

2006-11-05 23:14  arthur

	* [r74] nslcd-common.h, testnss.c: add proper copyright headers

2006-11-05 23:05  arthur

	* [r73] nslcd-server.c, nslcd-server.h, server/group.c, testnss.c:
	  implement group functions in server but currently
	  group_bymember() does not work

2006-11-05 22:57  arthur

	* [r72] nslcd-common.h: remove testing stuff

2006-11-05 22:57  arthur

	* [r71] nslcd-common.h: fix some variable usage bugs in READ_*
	  marcos and change protocol debugging marcos to not use variadic
	  arguments

2006-11-04 13:05  arthur

	* [r70] Makefile.am, certutil, doc/nsswitch.ldap, nsswitch.ldap:
	  reorganize (and get rid of) some files

2006-11-03 22:03  arthur

	* [r69] nslcd.h, nss/Makefile.am, nss/hosts.c: implement initial
	  host database lookups NSS-side

2006-11-03 22:01  arthur

	* [r68] nslcd-common.h: make SKIP more consistent with READ

2006-11-03 19:07  arthur

	* [r67] nslcd-server.c: clean struct sockaddr_un structure before
	  usage

2006-11-03 13:55  arthur

	* [r66] nslcd-common.h, nss/group.c: fix bogus reuse of tmpint32,
	  introducing tmp3int32

2006-11-03 13:46  arthur

	* [r65] nslcd-common.h: split buffer management macros into
	  separate macros

2006-11-03 12:37  arthur

	* [r64] nslcd-common.h, nslcd.h, nss/aliases.c, nss/group.c,
	  server/aliases.c: rename LOOP to STRINGLIST as that is currently
	  the only supported format

2006-11-03 12:09  arthur

	* [r63] nslcd-common.h, nss/group.c: add _nss_ldap_initgroups_dyn()
	  function

2006-11-03 10:06  arthur

	* [r62] nslcd-common.h, nss/aliases.c, nss/common.h, nss/group.c,
	  nss/passwd.c: make loop macros common, create macros for
	  expanding {set,get,end}ent() functions and implement
	  {set,get,end}aliasent

2006-11-03 10:03  arthur

	* [r61] nslcd.h: small documentation fixes

2006-11-03 10:03  arthur

	* [r60] nslcd-server.h: implement nslcd_alias_all() server-side

2006-11-03 10:02  arthur

	* [r59] nslcd-server.c, server/aliases.c: implement
	  nslcd_alias_all() server-side

2006-11-03 10:02  arthur

	* [r58] server/group.c: get rid of some more unneeded code

2006-11-02 14:17  arthur

	* [r57] server/aliases.c, server/passwd.c: some small fixes

2006-11-02 14:13  arthur

	* [r56] nslcd-client.h, nslcd-server.c, nslcd-server.h, nslcd.h,
	  nss/aliases.c, nss/common.c, nss/passwd.c, server/aliases.c,
	  server/common.c, server/passwd.c: rename some constants and
	  switch to a more sane naming scheme

2006-11-02 13:58  arthur

	* [r55] nss/exports.h: we only need to export
	  _nss_ldap_initgroups_dyn(), not _nss_ldap_initgroups()

2006-11-02 12:08  arthur

	* [r54] nslcd-client.h, nss/aliases.c, nss/group.c, nss/passwd.c:
	  rename READ_RESPONSE() macro to READ_RESPONSE_CODE()

2006-11-01 22:48  arthur

	* [r53] nslcd.h, nss/Makefile.am, nss/group.c, testnss.c: implement
	  NSS side of getgrnam(), getgrgid() and {set,get,end}grent()

2006-11-01 14:05  arthur

	* [r52] nss/aliases.c, nss/common.h, nss/passwd.c: always set
	  *errnop correctly

2006-11-01 13:13  arthur

	* [r51] CVSVersionInfo.txt, Makefile.am: get rid of
	  CVSVersionInfo.txt

2006-11-01 12:58  arthur

	* [r50] nslcd.c: prevent recursive hostname lookups through ldap

2006-11-01 12:32  arthur

	* [r49] Makefile.am: add some files to EXTRA_DIST

2006-11-01 12:19  arthur

	* [r48] nslcd-server.c, nslcd.h, server/common.c, server/group.c,
	  server/passwd.c: get rid of some trailing spaces

2006-11-01 12:19  arthur

	* [r47] nslcd.c: ignore SIGPIPE and get rid of some trailing spaces

2006-11-01 12:18  arthur

	* [r46] testnss.c: only print result on success and errors on
	  failure

2006-11-01 12:17  arthur

	* [r45] server/common.h: do not close the server-side stream as the
	  main dispatcher will close it

2006-11-01 12:13  arthur

	* [r44] nss/passwd.c: implement _nss_ldap_{set,get,end}pwent()
	  functions with thread-local opened file

2006-11-01 12:08  arthur

	* [r43] nss/common.h: also set file pointer to NULL when closing a
	  stream to properly handle reuse of stream

2006-11-01 12:04  arthur

	* [r42] log.c: prefix debugging messages with DEBUG

2006-11-01 12:04  arthur

	* [r41] configure.ac: look for different file in source directory,
	  improve --enable-debug option and add checking for __thread
	  keyword

2006-11-01 12:02  arthur

	* [r40] nslcd-common.h: do not try to read and write zero length
	  strings and add protocol debugging option

2006-11-01 09:23  arthur

	* [r39] Makefile.am, dnsconfig.c, dnsconfig.h, ldap-nss.c,
	  ldap-nss.h, ldap-parse.h, ldap-schema.c, ldap-schema.h, nslcd.c,
	  pagectrl.c, pagectrl.h, resolve.c, resolve.h, server/Makefile.am,
	  server/dnsconfig.c, server/dnsconfig.h, server/ldap-nss.c,
	  server/ldap-nss.h, server/ldap-parse.h, server/ldap-schema.c,
	  server/ldap-schema.h, server/pagectrl.c, server/pagectrl.h,
	  server/resolve.c, server/resolve.h, server/util.c, server/util.h,
	  util.c, util.h: move some remaining files into the server/
	  directory

2006-10-31 14:18  arthur

	* [r38] nslcd-common.h, nslcd-server.c, nslcd-server.h, nslcd.h,
	  nss/aliases.c, server/aliases.c, server/passwd.c, testnss.c:
	  implement reading of alias information through getaliasbyname()

2006-10-31 12:46  arthur

	* [r37] nss/aliases.c, nss/common.c, nss/common.h, nss/exports.h,
	  nss/passwd.c: make code consistent by adding headers, removing
	  trailing whitespace and proper ifdefs for header files

2006-10-31 12:19  arthur

	* [r36] .: ignore more files

2006-10-31 12:18  arthur

	* [r35] nslcd-common.h: add header file defining read and write
	  macros

2006-10-31 12:17  arthur

	* [r34] nslcd-client.c, nslcd-client.h, nslcd-server.c,
	  nslcd-server.h, nslcd.h, nss/Makefile.am, nss/common.c,
	  nss/common.h, nss/passwd.c, server/common.h, server/passwd.c,
	  testnss.c: clear up protocol macros while implementing getpwuid()
	  and {set,get,end}pwent() functions (last not yet on NSS side)

2006-10-31 10:08  arthur

	* [r33] nslcd.h: document protocol a little better

2006-10-30 16:21  arthur

	* [r32] Makefile.am, nslcd-client.c, nslcd-client.h,
	  nslcd-server.c, nslcd-server.h, nslcd.c, nslcd.h, testnss.c: get
	  first working version of end-to-end test of nss call using simple
	  test program

2006-10-30 16:16  arthur

	* [r31] Makefile.am, configure.ac: add server directory

2006-10-30 16:15  arthur

	* [r30] nss/passwd.c: get rid of some empty lines

2006-10-30 15:37  arthur

	* [r29] server, server/Makefile.am, server/common.c,
	  server/common.h, server/passwd.c: implement simple password
	  lookup with nslcd_getpwnam() function

2006-10-30 13:44  arthur

	* [r28] nss/common.h, nss/passwd.c: return read data in struct and
	  fix some marcos

2006-10-30 13:40  arthur

	* [r27] nss/Makefile.am: do not build libnss_ldap.so in this
	  directory, only build nss object functions

2006-10-25 21:48  arthur

	* [r26] configure.ac, nss: build nss directory

2006-10-25 15:22  arthur

	* [r25] ldap-alias.c, ldap-automount.c, ldap-ethers.c, ldap-grp.c,
	  ldap-hosts.c, ldap-netgrp.c, ldap-network.c, ldap-proto.c,
	  ldap-pwd.c, ldap-rpc.c, ldap-service.c, ldap-spwd.c, server,
	  server/aliases.c, server/automount.c, server/ethers.c,
	  server/group.c, server/hosts.c, server/netgroup.c,
	  server/networks.c, server/passwd.c, server/protocols.c,
	  server/rpc.c, server/services.c, server/shadow.c: move ldap
	  server code into separate directory

2006-10-25 15:11  arthur

	* [r24] Makefile.am, nslcd-client.c, nslcd-client.h, nslcd.h, nss,
	  nss/Makefile.am, nss/aliases.c, nss/common.c, nss/common.h,
	  nss/exports.h, nss/passwd.c: add some basic minimal NSS code that
	  can be generated from macros

2006-10-23 12:03  arthur

	* [r23] ., Makefile.am, configure.ac, log.c, log.h, nslcd-client.c,
	  nslcd-client.h, nslcd-server.c, nslcd-server.h, nslcd.c, nslcd.h,
	  xmalloc.c, xmalloc.h: implemented basic client/server setup with
	  a thin client comminicating with a local server over a socket
	  (initial version of code, much needs to be done)

2006-10-23 12:02  arthur

	* [r22] ldap-grp.c, ldap-parse.h: rearrange functions in more
	  logical order

2006-10-23 12:01  arthur

	* [r21] ldap-nss.h: align comments

2006-10-23 11:26  arthur

	* [r20] ldap-pwd.c: export function _nss_ldap_parse_pw()

2006-10-17 14:13  arthur

	* [r19] Makefile.am, dnsconfig.c, dnsconfig.h, ldap-alias.c,
	  ldap-automount.c, ldap-ethers.c, ldap-grp.c, ldap-hosts.c,
	  ldap-netgrp.c, ldap-network.c, ldap-nss.c, ldap-nss.h,
	  ldap-parse.h, ldap-proto.c, ldap-pwd.c, ldap-rpc.c,
	  ldap-schema.c, ldap-schema.h, ldap-service.c, ldap-spwd.c, ltf.c,
	  ltf.h, pagectrl.c, pagectrl.h, resolve.c, resolve.h, util.c: get
	  rid of ltf files (which contain NPL licenced code btw) clean up
	  includes and general small code cleanups

2006-10-17 13:40  arthur

	* [r18] .cvsignore: get rid of this file

2006-10-16 15:02  arthur

	* [r17] Makefile.am, dnsconfig.c, dnsconfig.h, ldap-alias.c,
	  ldap-automount.c, ldap-ethers.c, ldap-grp.c, ldap-hosts.c,
	  ldap-netgrp.c, ldap-network.c, ldap-nss.c, ldap-nss.h,
	  ldap-parse.h, ldap-proto.c, ldap-pwd.c, ldap-rpc.c,
	  ldap-schema.h, ldap-service.c, ldap-spwd.c, ltf.c, nss_common.h,
	  nss_ldap.spec, util.c, util.h: some more cleanups, expanding some
	  MACROs and typedefs and get rid of some more code

2006-10-15 10:48  arthur

	* [r16] configure.ac: add --enable-warnings option for extra
	  compiler warnings

2006-10-12 13:00  arthur

	* [r15] Makefile.am, exports.solaris, ldap-alias.c, ldap-alias.h,
	  ldap-automount.c, ldap-automount.h, ldap-bp.c, ldap-bp.h,
	  ldap-ethers.c, ldap-ethers.h, ldap-grp.c, ldap-grp.h,
	  ldap-hosts.c, ldap-hosts.h, ldap-netgrp.c, ldap-netgrp.h,
	  ldap-network.c, ldap-network.h, ldap-proto.c, ldap-proto.h,
	  ldap-pwd.c, ldap-pwd.h, ldap-rpc.c, ldap-rpc.h, ldap-service.c,
	  ldap-service.h, ldap-spwd.c, ldap-spwd.h: get rid of some
	  unnecessary header files (and a c file)

2006-10-12 12:34  arthur

	* [r14] ANNOUNCE, AUTHORS, COPYING, ChangeLog, Makefile.am, NEWS,
	  README, certutil, configure.ac, dnsconfig.c, dnsconfig.h,
	  ldap-alias.c, ldap-alias.h, ldap-automount.c, ldap-automount.h,
	  ldap-bp.c, ldap-bp.h, ldap-ethers.c, ldap-ethers.h, ldap-grp.c,
	  ldap-grp.h, ldap-hosts.c, ldap-hosts.h, ldap-netgrp.c,
	  ldap-netgrp.h, ldap-network.c, ldap-network.h, ldap-nss.c,
	  ldap-nss.h, ldap-parse.h, ldap-proto.c, ldap-proto.h, ldap-pwd.c,
	  ldap-pwd.h, ldap-rpc.c, ldap-rpc.h, ldap-schema.c, ldap-schema.h,
	  ldap-service.c, ldap-service.h, ldap-spwd.c, ldap-spwd.h,
	  ldap.conf, ltf.c, ltf.h, nss_common.h, nss_ldap.5, nss_ldap.spec,
	  pagectrl.c, pagectrl.h, resolve.c, resolve.h, util.c, util.h:
	  remove trailing spaces

2006-10-12 12:32  arthur

	* [r13] ANNOUNCE, AUTHORS, Makefile.am, NEWS, README, certutil,
	  configure.ac, dnsconfig.c, dnsconfig.h, exports.aix,
	  exports.hpux, exports.linux, exports.solaris, ldap-alias.c,
	  ldap-alias.h, ldap-automount.c, ldap-automount.h, ldap-bp.c,
	  ldap-bp.h, ldap-ethers.c, ldap-ethers.h, ldap-grp.c, ldap-grp.h,
	  ldap-hosts.c, ldap-hosts.h, ldap-netgrp.c, ldap-netgrp.h,
	  ldap-network.c, ldap-network.h, ldap-nss.c, ldap-nss.h,
	  ldap-parse.h, ldap-proto.c, ldap-proto.h, ldap-pwd.c, ldap-rpc.c,
	  ldap-rpc.h, ldap-schema.c, ldap-schema.h, ldap-service.c,
	  ldap-service.h, ldap-spwd.c, ldap-spwd.h, ldap.conf, ltf.c,
	  nsswitch.ldap, pagectrl.c, resolve.c, resolve.h, util.c, util.h:
	  some more small cleanups of code for non-supported systems and
	  convert tabs to spaces

2006-10-12 12:29  arthur

	* [r12] configure.ac: include templates from acconfig.h into
	  configure.ac

2006-10-12 11:38  arthur

	* [r11] debian/rules: set as executable

2006-10-12 11:01  arthur

	* [r10] Makefile.am, aix_authmeth.c, dnsconfig.c, dnsconfig.h,
	  irs-grp.c, irs-hosts.c, irs-netgrp.c, irs-network.c, irs-nss.c,
	  irs-nss.h, irs-proto.c, irs-pwd.c, irs-service.c, irs.h,
	  ldap-alias.c, ldap-alias.h, ldap-automount.c, ldap-automount.h,
	  ldap-bp.c, ldap-bp.h, ldap-ethers.c, ldap-ethers.h, ldap-grp.c,
	  ldap-grp.h, ldap-hosts.c, ldap-hosts.h, ldap-netgrp.c,
	  ldap-netgrp.h, ldap-network.c, ldap-network.h, ldap-nss.c,
	  ldap-nss.h, ldap-parse.h, ldap-proto.c, ldap-proto.h, ldap-pwd.c,
	  ldap-pwd.h, ldap-rpc.c, ldap-rpc.h, ldap-schema.c, ldap-schema.h,
	  ldap-service.c, ldap-service.h, ldap-sldap.c, ldap-sldap.h,
	  ldap-spwd.c, ldap-spwd.h, ltf.c, ltf.h, nss_common.h,
	  nss_dbdefs.h, nss_ldap.5, pagectrl.c, pagectrl.h, resolve.c,
	  resolve.h, snprintf.c, snprintf.h, util.c, util.h: first round of
	  cleanups, all non-glibc NSS stuff has been removed, because we
	  are going to do some major restructuring it will not likely
	  remain valid anyway and we can always re-add it later

2006-10-12 08:00  arthur

	* [r9] CVSVersionInfo.txt, ChangeLog, NEWS, aix_authmeth.c,
	  certutil, dnsconfig.c, dnsconfig.h,
	  doc/autofs-4.1.3-lookup-nssldap.patch, doc/lookup_nssldap.c,
	  exports.linux, exports.solaris, irs-grp.c, irs-hosts.c,
	  irs-netgrp.c, irs-network.c, irs-nss.c, irs-nss.h, irs-proto.c,
	  irs-pwd.c, irs-service.c, irs.h, ldap-alias.c, ldap-alias.h,
	  ldap-automount.c, ldap-automount.h, ldap-bp.c, ldap-bp.h,
	  ldap-ethers.c, ldap-ethers.h, ldap-grp.c, ldap-grp.h,
	  ldap-hosts.c, ldap-hosts.h, ldap-netgrp.c, ldap-netgrp.h,
	  ldap-network.c, ldap-network.h, ldap-nss.c, ldap-nss.h,
	  ldap-parse.h, ldap-proto.c, ldap-proto.h, ldap-pwd.c, ldap-pwd.h,
	  ldap-rpc.c, ldap-rpc.h, ldap-schema.c, ldap-schema.h,
	  ldap-service.c, ldap-service.h, ldap-sldap.c, ldap-sldap.h,
	  ldap-spwd.c, ldap-spwd.h, ldap.conf, ltf.c, ltf.h, nss_common.h,
	  nss_dbdefs.h, nss_ldap.5, nsswitch.ldap, pagectrl.c, pagectrl.h,
	  resolve.c, resolve.h, snprintf.c, snprintf.h,
	  tests/nsswitch.test, tests/testpw.c, tests/testpw4.c,
	  tests/testpw5.c, tests/testpw6.c, util.c, util.h: add keyword
	  expansion (svn:keywords) to all files containing keywords

2006-10-12 07:50  arthur

	* [r8] Makefile.am, configure.ac: add West to copyrights notice

2006-10-11 14:00  arthur

	* [r7] INSTALL: install newer version from automake

2006-10-11 13:58  arthur

	* [r6] Makefile.am, acconfig.h, aclocal.m4, autogen.sh,
	  config.guess, config.h.in, config.sub, configure.ac,
	  configure.in, depcomp, install-sh, missing, mkinstalldirs,
	  stamp-h, stamp-h.in: first step in cleaning up build process
	  (switch to newer autoconf/automake and remove generated files
	  from version control)

2006-10-11 13:52  arthur

	* [r5] ., Makefile.in, configure: remove some files from version
	  control and add more ignores

2006-10-11 13:44  arthur

	* [r4] ., debian: ignore some generated files

2006-10-11 13:37  arthur

	* [r3] .: branch off latest Debian version

2006-10-11 13:37  arthur

	* [r2] ., Makefile.am, Makefile.in, aclocal.m4, configure,
	  configure.in, debian, debian/LDAP-Permissions.txt,
	  debian/README.Debian, debian/changelog, debian/compat,
	  debian/config, debian/control, debian/copyright, debian/examples,
	  debian/examples/groups.ldif, debian/examples/people.ldif,
	  debian/libnss-ldap.dirs, debian/libnss-ldap.init,
	  debian/libnss-ldap.install, debian/libnss-ldap.links,
	  debian/libnss-ldap.postinst, debian/libnss-ldap.postrm,
	  debian/po, debian/po/POTFILES.in, debian/po/ca.po,
	  debian/po/cs.po, debian/po/da.po, debian/po/de.po,
	  debian/po/es.po, debian/po/fr.po, debian/po/ja.po,
	  debian/po/nl.po, debian/po/pt_BR.po, debian/po/ru.po,
	  debian/po/sv.po, debian/po/templates.pot, debian/po/vi.po,
	  debian/rules, debian/templates, ldap-nss.c, ldap-nss.h,
	  ldap-pwd.c, ldap.conf, stamp-h: import Debian release 251-5.2

2006-10-11 13:34  arthur

	* [r1] ., .cvsignore, ANNOUNCE, AUTHORS, COPYING,
	  CVSVersionInfo.txt, ChangeLog, INSTALL, Makefile.am, Makefile.in,
	  NEWS, README, acconfig.h, aclocal.m4, aix_authmeth.c, autogen.sh,
	  certutil, config.guess, config.h.in, config.sub, configure,
	  configure.in, depcomp, dnsconfig.c, dnsconfig.h, doc,
	  doc/README.AIX, doc/README.HPUX, doc/README.IRS, doc/README.SFU,
	  doc/README.paged, doc/SolarisInstallNotes.txt,
	  doc/autofs-4.1.3-lookup-nssldap.patch, doc/lookup_nssldap.c,
	  exports.aix, exports.hpux, exports.linux, exports.solaris,
	  install-sh, irs-grp.c, irs-hosts.c, irs-netgrp.c, irs-network.c,
	  irs-nss.c, irs-nss.h, irs-proto.c, irs-pwd.c, irs-service.c,
	  irs.h, ldap-alias.c, ldap-alias.h, ldap-automount.c,
	  ldap-automount.h, ldap-bp.c, ldap-bp.h, ldap-ethers.c,
	  ldap-ethers.h, ldap-grp.c, ldap-grp.h, ldap-hosts.c,
	  ldap-hosts.h, ldap-netgrp.c, ldap-netgrp.h, ldap-network.c,
	  ldap-network.h, ldap-nss.c, ldap-nss.h, ldap-parse.h,
	  ldap-proto.c, ldap-proto.h, ldap-pwd.c, ldap-pwd.h, ldap-rpc.c,
	  ldap-rpc.h, ldap-schema.c, ldap-schema.h, ldap-service.c,
	  ldap-service.h, ldap-sldap.c, ldap-sldap.h, ldap-spwd.c,
	  ldap-spwd.h, ldap.conf, ltf.c, ltf.h, missing, mkinstalldirs,
	  nss_common.h, nss_dbdefs.h, nss_ldap.5, nss_ldap.spec,
	  nsswitch.ldap, pagectrl.c, pagectrl.h, resolve.c, resolve.h,
	  snprintf.c, snprintf.h, stamp-h.in, tests, tests/ldaptest.pl,
	  tests/nsswitch.test, tests/testd.c, tests/testgr.c,
	  tests/testpw.c, tests/testpw3.c, tests/testpw4.c,
	  tests/testpw5.c, tests/testpw6.c, util.c, util.h: import release
	  251 of nss-ldap