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
  
     | 
    
      This is pdfTeXk, Version 3.141592-1.40.3 (Web2C 7.5.6) (format=pdflatex 2007.9.22)  20 NOV 2008 15:40
entering extended mode
 file:line:error style messages enabled.
**Samba3-Developers-Guide.tex
(./Samba3-Developers-Guide.tex
LaTeX2e <2005/12/01>
Babel <v3.8h> and hyphenation patterns for english, usenglishmax, dumylang, noh
yphenation, basque, bulgarian, coptic, welsh, czech, slovak, german, ngerman, d
anish, esperanto, spanish, catalan, galician, estonian, finnish, french, greek,
 monogreek, ancientgreek, croatian, hungarian, interlingua, ibycus, indonesian,
 icelandic, italian, latin, mongolian, dutch, norsk, polish, portuguese, pinyin
, romanian, russian, slovenian, uppersorbian, serbian, swedish, turkish, ukengl
ish, ukrainian, loaded.
(xslt/latex/sambadoc.cls
Document Class: sambadoc 2005/06/13 Samba Documentation class
(/usr/share/texmf/tex/latex/base/report.cls
Document Class: report 2005/09/16 v1.4f Standard LaTeX document class
(/usr/share/texmf/tex/latex/base/size11.clo
File: size11.clo 2005/09/16 v1.4f Standard LaTeX file (size option)
)
\c@part=\count79
\c@chapter=\count80
\c@section=\count81
\c@subsection=\count82
\c@subsubsection=\count83
\c@paragraph=\count84
\c@subparagraph=\count85
\c@figure=\count86
\c@table=\count87
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
)
\captsize=\skip43
\captwidth=\skip44
\beforetableskip=\skip45
(/usr/share/texmf/tex/latex/fancyhdr/fancyhdr.sty
\fancy@headwidth=\skip46
\f@ncyO@elh=\skip47
\f@ncyO@erh=\skip48
\f@ncyO@olh=\skip49
\f@ncyO@orh=\skip50
\f@ncyO@elf=\skip51
\f@ncyO@erf=\skip52
\f@ncyO@olf=\skip53
\f@ncyO@orf=\skip54
)
(/usr/share/texmf/tex/latex/listings/listings.sty
(/usr/share/texmf/tex/latex/graphics/keyval.sty
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks14
)
\lst@mode=\count88
\lst@gtempboxa=\box26
\lst@token=\toks15
\lst@length=\count89
\lst@currlwidth=\dimen103
\lst@column=\count90
\lst@pos=\count91
\lst@lostspace=\dimen104
\lst@width=\dimen105
\lst@newlines=\count92
\lst@lineno=\count93
\c@lstlisting=\count94
\lst@maxwidth=\dimen106
(/usr/share/texmf/tex/latex/listings/lstpatch.sty
File: lstpatch.sty 2004/10/17 1.3b (Carsten Heinz)
)
(/usr/share/texmf/tex/latex/listings/lstmisc.sty
File: lstmisc.sty 2004/09/07 1.3 (Carsten Heinz)
\c@lstnumber=\count95
\lst@skipnumbers=\count96
\lst@framebox=\box27
)
(/usr/share/texmf/tex/latex/listings/listings.cfg
File: listings.cfg 2004/09/05 1.3 listings configuration
))
Package: listings 2004/10/17 1.3b (Carsten Heinz)
(/usr/share/texmf/tex/latex/xcolor/xcolor.sty
Package: xcolor 2007/01/21 v2.11 LaTeX color extensions (UK)
(/usr/share/texmf/tex/latex/config/color.cfg
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
)
Package xcolor Info: Driver file: pdftex.def on input line 225.
(/usr/share/texmf/tex/latex/pdftex-def/pdftex.def
File: pdftex.def 2007/01/08 v0.04d Graphics/color for pdfTeX
\Gread@gobject=\count97
)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1337.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1341.
Package xcolor Info: Model `RGB' extended on input line 1353.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1355.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1356.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1357.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1358.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1359.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1360.
))
(/usr/share/texmf/tex/latex/base/ifthen.sty
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
)
(/usr/share/texmf/tex/latex/graphics/graphicx.sty
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/share/texmf/tex/latex/graphics/graphics.sty
Package: graphics 2006/02/20 v1.0o Standard LaTeX Graphics (DPC,SPQR)
(/usr/share/texmf/tex/latex/graphics/trig.sty
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
(/usr/share/texmf/tex/latex/config/graphics.cfg
File: graphics.cfg 2007/01/18 v1.5 graphics configuration of teTeX/TeXLive
)
Package graphics Info: Driver file: pdftex.def on input line 90.
)
\Gin@req@height=\dimen107
\Gin@req@width=\dimen108
)
(/usr/share/texmf/tex/latex/base/latexsym.sty
Package: latexsym 1998/08/17 v2.2e Standard LaTeX package (lasy symbols)
\symlasy=\mathgroup4
LaTeX Font Info:    Overwriting symbol font `lasy' in version `bold'
(Font)                  U/lasy/m/n --> U/lasy/b/n on input line 47.
)
(/usr/share/texmf/tex/latex/tools/enumerate.sty
Package: enumerate 1999/03/05 v3.00 enumerate extensions (DPC)
\@enLab=\toks16
)
(/usr/share/texmf/tex/latex/fancybox/fancybox.sty
Package: fancybox 2000/09/19 1.3
Style option: `fancybox' v1.3 <2000/09/19> (tvz)
\@fancybox=\box28
\shadowsize=\dimen109
\@Sbox=\box29
\do@VerbBox=\toks17
\the@fancyput=\toks18
\this@fancyput=\toks19
\EndVerbatimTokens=\toks20
\Verbatim@Outfile=\write3
\Verbatim@Infile=\read1
) (/usr/share/texmf/tex/latex/float/float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count98
\float@exts=\toks21
\float@box=\box30
\@float@everytoks=\toks22
\@floatcapt=\box31
)
(/usr/share/texmf/tex/latex/ragged2e.sty
Package: ragged2e 2003/03/25 v2.04 ragged2e Package (MS)
(/usr/share/texmf/tex/latex/everysel/everysel.sty
Package: everysel 1999/06/08 v1.03 EverySelectfont Package (MS)
)
\CenteringLeftskip=\skip55
\RaggedLeftLeftskip=\skip56
\RaggedRightLeftskip=\skip57
\CenteringRightskip=\skip58
\RaggedLeftRightskip=\skip59
\RaggedRightRightskip=\skip60
\CenteringParfillskip=\skip61
\RaggedLeftParfillskip=\skip62
\RaggedRightParfillskip=\skip63
\JustifyingParfillskip=\skip64
\CenteringParindent=\skip65
\RaggedLeftParindent=\skip66
\RaggedRightParindent=\skip67
\JustifyingParindent=\skip68
)
(/usr/share/texmf/tex/latex/fancyvrb/fancyvrb.sty
Package: fancyvrb 1998/07/17
Style option: `fancyvrb' v2.6, with DG/SPQR fixes <1998/07/17> (tvz)
\FV@CodeLineNo=\count99
\FV@InFile=\read2
\FV@TabBox=\box32
\c@FancyVerbLine=\count100
\FV@StepNumber=\count101
\FV@OutFile=\write4
No file fancyvrb.cfg.
) (/usr/share/texmf/tex/latex/ltxmisc/parskip.sty
Package: parskip 2001/04/09 non-zero parskip adjustments
)
(/usr/share/texmf/tex/latex/rotating/rotating.sty
Package: rotating 1997/09/26, v2.13 Rotation package
\c@r@tfl@t=\count102
\rot@float@box=\box33
)
(/usr/share/texmf/tex/latex/subfigure/subfigure.sty
Package: subfigure 2002/03/15 v2.1.5 subfigure package
\subfigtopskip=\skip69
\subfigcapskip=\skip70
\subfigcaptopadj=\dimen110
\subfigbottomskip=\skip71
\subfigcapmargin=\dimen111
\subfiglabelskip=\skip72
\c@subfigure=\count103
\c@lofdepth=\count104
\c@subtable=\count105
\c@lotdepth=\count106
****************************************
* Local config file subfigure.cfg used *
****************************************
(/usr/share/texmf/tex/latex/subfigure/subfigure.cfg)
\subfig@top=\skip73
\subfig@bottom=\skip74
)
(/usr/share/texmf/tex/latex/tools/tabularx.sty
Package: tabularx 1999/01/07 v2.07 `tabularx' package (DPC)
(/usr/share/texmf/tex/latex/tools/array.sty
Package: array 2005/08/23 v2.4b Tabular extension package (FMi)
\col@sep=\dimen112
\extrarowheight=\dimen113
\NC@list=\toks23
\extratabsurround=\skip75
\backup@length=\skip76
)
\TX@col@width=\dimen114
\TX@old@table=\dimen115
\TX@old@col=\dimen116
\TX@target=\dimen117
\TX@delta=\dimen118
\TX@cols=\count107
\TX@ftn=\toks24
)
(/usr/share/texmf/tex/latex/ltxmisc/url.sty
\Urlmuskip=\muskip10
Package: url 2005/06/27  ver 3.2  Verb mode for urls, etc.
)
(/usr/share/texmf/tex/latex/amsmath/amsmath.sty
Package: amsmath 2000/07/18 v2.13 AMS math features
\@mathmargin=\skip77
For additional information on amsmath, use the `?' option.
(/usr/share/texmf/tex/latex/amsmath/amstext.sty
Package: amstext 2000/06/29 v2.01
(/usr/share/texmf/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0
\@emptytoks=\toks25
\ex@=\dimen119
))
(/usr/share/texmf/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d
\pmbraise@=\dimen120
)
(/usr/share/texmf/tex/latex/amsmath/amsopn.sty
Package: amsopn 1999/12/14 v2.01 operator names
)
\inf@bad=\count108
LaTeX Info: Redefining \frac on input line 211.
\uproot@=\count109
\leftroot@=\count110
LaTeX Info: Redefining \overline on input line 307.
\classnum@=\count111
\DOTSCASE@=\count112
LaTeX Info: Redefining \ldots on input line 379.
LaTeX Info: Redefining \dots on input line 382.
LaTeX Info: Redefining \cdots on input line 467.
\Mathstrutbox@=\box34
\strutbox@=\box35
\big@size=\dimen121
LaTeX Font Info:    Redeclaring font encoding OML on input line 567.
LaTeX Font Info:    Redeclaring font encoding OMS on input line 568.
\macc@depth=\count113
\c@MaxMatrixCols=\count114
\dotsspace@=\muskip11
\c@parentequation=\count115
\dspbrk@lvl=\count116
\tag@help=\toks26
\row@=\count117
\column@=\count118
\maxfields@=\count119
\andhelp@=\toks27
\eqnshift@=\dimen122
\alignsep@=\dimen123
\tagshift@=\dimen124
\tagwidth@=\dimen125
\totwidth@=\dimen126
\lineht@=\dimen127
\@envbody=\toks28
\multlinegap=\skip78
\multlinetaggap=\skip79
\mathdisplay@stack=\toks29
LaTeX Info: Redefining \[ on input line 2666.
LaTeX Info: Redefining \] on input line 2667.
)
(/usr/share/texmf/tex/latex/amscls/amsthm.sty
Package: amsthm 2004/08/06 v2.20
\thm@style=\toks30
\thm@bodyfont=\toks31
\thm@headfont=\toks32
\thm@notefont=\toks33
\thm@headpunct=\toks34
\thm@preskip=\skip80
\thm@postskip=\skip81
\thm@headsep=\skip82
\dth@everypar=\toks35
)
(/usr/share/texmf/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2001/10/25 v2.2f
\symAMSa=\mathgroup5
\symAMSb=\mathgroup6
LaTeX Font Info:    Overwriting math alphabet `\mathfrak' in version `bold'
(Font)                  U/euf/m/n --> U/euf/b/n on input line 132.
)
(/usr/share/texmf/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2002/01/22 v2.2d
)
(/usr/share/texmf/tex/latex/amsmath/amsxtra.sty
Package: amsxtra 1999/11/15 v1.2c
LaTeX Info: Redefining \nobreakspace on input line 77.
)
(/usr/share/texmf/tex/latex/hyperref/hyperref.sty
Package: hyperref 2007/02/07 v6.75r Hypertext links for LaTeX
\@linkdim=\dimen128
\Hy@linkcounter=\count120
\Hy@pagecounter=\count121
(/usr/share/texmf/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2007/02/07 v6.75r Hyperref: PDFDocEncoding definition (HO)
)
(/usr/share/texmf/tex/latex/config/hyperref.cfg
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
(/usr/share/texmf/tex/latex/oberdiek/kvoptions.sty
Package: kvoptions 2006/08/22 v2.4 Connects package keyval with LaTeX options (
HO)
)
Package hyperref Info: Option `bookmarksnumbered' set `true' on input line 2238
.
Package hyperref Info: Option `colorlinks' set `true' on input line 2238.
Package hyperref Info: Option `bookmarks' set `true' on input line 2238.
Package hyperref Info: Option `breaklinks' set `true' on input line 2238.
Package hyperref Info: Option `linktocpage' set `true' on input line 2238.
Package hyperref Info: Option `plainpages' set `false' on input line 2238.
Package hyperref Info: Option `hyperfigures' set `true' on input line 2238.
Package hyperref Info: Option `hyperindex' set `true' on input line 2238.
Package hyperref Info: Hyper figures ON on input line 2286.
Package hyperref Info: Link nesting OFF on input line 2293.
Package hyperref Info: Hyper index ON on input line 2296.
Package hyperref Info: Plain pages OFF on input line 2303.
Package hyperref Info: Backreferencing ON on input line 2306.
Implicit mode ON; LaTeX internals redefined
Package hyperref Info: Bookmarks ON on input line 2444.
(/usr/share/texmf/tex/latex/hyperref/backref.sty
Package: backref 2006/10/06 v1.27 Bibliographical back referencing
)
LaTeX Info: Redefining \url on input line 2599.
\Fld@menulength=\count122
\Field@Width=\dimen129
\Fld@charsize=\dimen130
\Choice@toks=\toks36
\Field@toks=\toks37
Package hyperref Info: Hyper figures ON on input line 3100.
Package hyperref Info: Link nesting OFF on input line 3107.
Package hyperref Info: Hyper index ON on input line 3110.
Package hyperref Info: backreferencing ON on input line 3115.
Package hyperref Info: Link coloring ON on input line 3120.
\Hy@abspage=\count123
\c@Item=\count124
)
*hyperref using driver hpdftex*
(/usr/share/texmf/tex/latex/hyperref/hpdftex.def
File: hpdftex.def 2007/02/07 v6.75r Hyperref driver for pdfTeX
\Fld@listcount=\count125
)
\admlength=\skip83
\@float@every@figure=\toks38
\@float@every@table=\toks39
\@float@every@program=\toks40
\c@program=\count126
\@float@every@example=\toks41
\c@example=\count127
\@float@every@dbequation=\toks42
\c@dbequation=\count128
\@float@every@algorithm=\toks43
\c@algorithm=\count129
\docbooktolatextempskip=\skip84
(/usr/share/texmf/tex/generic/babel/babel.sty
Package: babel 2005/11/23 v3.8h The Babel package
(/usr/share/texmf/tex/generic/babel/english.ldf
Language: english 2005/03/30 v3.3o English support from the babel system
(/usr/share/texmf/tex/generic/babel/babel.def
File: babel.def 2005/11/23 v3.8h Babel common definitions
\babel@savecnt=\count130
\U@D=\dimen131
)
\l@canadian = a dialect from \language\l@american 
\l@australian = a dialect from \language\l@british 
\l@newzealand = a dialect from \language\l@british 
))
\docbooktolatexoldparskip=\skip85
(/usr/share/texmf/tex/latex/ucs/ucs.sty
Package: ucs 2004/10/17 UCS: Unicode input support
(/usr/share/texmf/tex/latex/ucs/data/uni-global.def
File: uni-global.def 2004/10/17 UCS: Unicode global data
)
\uc@secondtry=\count131
\uc@combtoks=\toks44
\uc@combtoksb=\toks45
\uc@temptokena=\toks46
)
(/usr/share/texmf/tex/latex/base/inputenc.sty
Package: inputenc 2006/05/05 v1.1b Input encoding file
\inpenc@prehook=\toks47
\inpenc@posthook=\toks48
(/usr/share/texmf/tex/latex/base/utf8.def
File: utf8.def 2006/03/30 v1.1i UTF-8 support for inputenc
Now handling font encoding OML ...
... no UTF-8 mapping file for font encoding OML
Now handling font encoding T1 ...
... processing UTF-8 mapping file for font encodingT1
(/usr/share/texmf/tex/latex/base/t1enc.dfu
File: t1enc.dfu 2006/03/30 v1.1i UTF-8 support for inputenc
   defining Unicode char U+00A1 (decimal 161)
   defining Unicode char U+00A3 (decimal 163)
   defining Unicode char U+00AB (decimal 171)
   defining Unicode char U+00BB (decimal 187)
   defining Unicode char U+00BF (decimal 191)
   defining Unicode char U+00C0 (decimal 192)
   defining Unicode char U+00C1 (decimal 193)
   defining Unicode char U+00C2 (decimal 194)
   defining Unicode char U+00C3 (decimal 195)
   defining Unicode char U+00C4 (decimal 196)
   defining Unicode char U+00C5 (decimal 197)
   defining Unicode char U+00C6 (decimal 198)
   defining Unicode char U+00C7 (decimal 199)
   defining Unicode char U+00C8 (decimal 200)
   defining Unicode char U+00C9 (decimal 201)
   defining Unicode char U+00CA (decimal 202)
   defining Unicode char U+00CB (decimal 203)
   defining Unicode char U+00CC (decimal 204)
   defining Unicode char U+00CD (decimal 205)
   defining Unicode char U+00CE (decimal 206)
   defining Unicode char U+00CF (decimal 207)
   defining Unicode char U+00D0 (decimal 208)
   defining Unicode char U+00D1 (decimal 209)
   defining Unicode char U+00D2 (decimal 210)
   defining Unicode char U+00D3 (decimal 211)
   defining Unicode char U+00D4 (decimal 212)
   defining Unicode char U+00D5 (decimal 213)
   defining Unicode char U+00D6 (decimal 214)
   defining Unicode char U+00D8 (decimal 216)
   defining Unicode char U+00D9 (decimal 217)
   defining Unicode char U+00DA (decimal 218)
   defining Unicode char U+00DB (decimal 219)
   defining Unicode char U+00DC (decimal 220)
   defining Unicode char U+00DD (decimal 221)
   defining Unicode char U+00DE (decimal 222)
   defining Unicode char U+00DF (decimal 223)
   defining Unicode char U+00E0 (decimal 224)
   defining Unicode char U+00E1 (decimal 225)
   defining Unicode char U+00E2 (decimal 226)
   defining Unicode char U+00E3 (decimal 227)
   defining Unicode char U+00E4 (decimal 228)
   defining Unicode char U+00E5 (decimal 229)
   defining Unicode char U+00E6 (decimal 230)
   defining Unicode char U+00E7 (decimal 231)
   defining Unicode char U+00E8 (decimal 232)
   defining Unicode char U+00E9 (decimal 233)
   defining Unicode char U+00EA (decimal 234)
   defining Unicode char U+00EB (decimal 235)
   defining Unicode char U+00EC (decimal 236)
   defining Unicode char U+00ED (decimal 237)
   defining Unicode char U+00EE (decimal 238)
   defining Unicode char U+00EF (decimal 239)
   defining Unicode char U+00F0 (decimal 240)
   defining Unicode char U+00F1 (decimal 241)
   defining Unicode char U+00F2 (decimal 242)
   defining Unicode char U+00F3 (decimal 243)
   defining Unicode char U+00F4 (decimal 244)
   defining Unicode char U+00F5 (decimal 245)
   defining Unicode char U+00F6 (decimal 246)
   defining Unicode char U+00F8 (decimal 248)
   defining Unicode char U+00F9 (decimal 249)
   defining Unicode char U+00FA (decimal 250)
   defining Unicode char U+00FB (decimal 251)
   defining Unicode char U+00FC (decimal 252)
   defining Unicode char U+00FD (decimal 253)
   defining Unicode char U+00FE (decimal 254)
   defining Unicode char U+00FF (decimal 255)
   defining Unicode char U+0102 (decimal 258)
   defining Unicode char U+0103 (decimal 259)
   defining Unicode char U+0104 (decimal 260)
   defining Unicode char U+0105 (decimal 261)
   defining Unicode char U+0106 (decimal 262)
   defining Unicode char U+0107 (decimal 263)
   defining Unicode char U+010C (decimal 268)
   defining Unicode char U+010D (decimal 269)
   defining Unicode char U+010E (decimal 270)
   defining Unicode char U+010F (decimal 271)
   defining Unicode char U+0110 (decimal 272)
   defining Unicode char U+0111 (decimal 273)
   defining Unicode char U+0118 (decimal 280)
   defining Unicode char U+0119 (decimal 281)
   defining Unicode char U+011A (decimal 282)
   defining Unicode char U+011B (decimal 283)
   defining Unicode char U+011E (decimal 286)
   defining Unicode char U+011F (decimal 287)
   defining Unicode char U+0130 (decimal 304)
   defining Unicode char U+0131 (decimal 305)
   defining Unicode char U+0132 (decimal 306)
   defining Unicode char U+0133 (decimal 307)
   defining Unicode char U+0139 (decimal 313)
   defining Unicode char U+013A (decimal 314)
   defining Unicode char U+013D (decimal 317)
   defining Unicode char U+013E (decimal 318)
   defining Unicode char U+0141 (decimal 321)
   defining Unicode char U+0142 (decimal 322)
   defining Unicode char U+0143 (decimal 323)
   defining Unicode char U+0144 (decimal 324)
   defining Unicode char U+0147 (decimal 327)
   defining Unicode char U+0148 (decimal 328)
   defining Unicode char U+014A (decimal 330)
   defining Unicode char U+014B (decimal 331)
   defining Unicode char U+0150 (decimal 336)
   defining Unicode char U+0151 (decimal 337)
   defining Unicode char U+0152 (decimal 338)
   defining Unicode char U+0153 (decimal 339)
   defining Unicode char U+0154 (decimal 340)
   defining Unicode char U+0155 (decimal 341)
   defining Unicode char U+0158 (decimal 344)
   defining Unicode char U+0159 (decimal 345)
   defining Unicode char U+015A (decimal 346)
   defining Unicode char U+015B (decimal 347)
   defining Unicode char U+015E (decimal 350)
   defining Unicode char U+015F (decimal 351)
   defining Unicode char U+0160 (decimal 352)
   defining Unicode char U+0161 (decimal 353)
   defining Unicode char U+0162 (decimal 354)
   defining Unicode char U+0163 (decimal 355)
   defining Unicode char U+0164 (decimal 356)
   defining Unicode char U+0165 (decimal 357)
   defining Unicode char U+016E (decimal 366)
   defining Unicode char U+016F (decimal 367)
   defining Unicode char U+0170 (decimal 368)
   defining Unicode char U+0171 (decimal 369)
   defining Unicode char U+0178 (decimal 376)
   defining Unicode char U+0179 (decimal 377)
   defining Unicode char U+017A (decimal 378)
   defining Unicode char U+017B (decimal 379)
   defining Unicode char U+017C (decimal 380)
   defining Unicode char U+017D (decimal 381)
   defining Unicode char U+017E (decimal 382)
   defining Unicode char U+200C (decimal 8204)
   defining Unicode char U+2013 (decimal 8211)
   defining Unicode char U+2014 (decimal 8212)
   defining Unicode char U+2018 (decimal 8216)
   defining Unicode char U+2019 (decimal 8217)
   defining Unicode char U+201A (decimal 8218)
   defining Unicode char U+201C (decimal 8220)
   defining Unicode char U+201D (decimal 8221)
   defining Unicode char U+201E (decimal 8222)
   defining Unicode char U+2030 (decimal 8240)
   defining Unicode char U+2031 (decimal 8241)
   defining Unicode char U+2039 (decimal 8249)
   defining Unicode char U+203A (decimal 8250)
   defining Unicode char U+2423 (decimal 9251)
)
Now handling font encoding OT1 ...
... processing UTF-8 mapping file for font encodingOT1
(/usr/share/texmf/tex/latex/base/ot1enc.dfu
File: ot1enc.dfu 2006/03/30 v1.1i UTF-8 support for inputenc
   defining Unicode char U+00A1 (decimal 161)
   defining Unicode char U+00A3 (decimal 163)
   defining Unicode char U+00B8 (decimal 184)
   defining Unicode char U+00BF (decimal 191)
   defining Unicode char U+00C5 (decimal 197)
   defining Unicode char U+00C6 (decimal 198)
   defining Unicode char U+00D8 (decimal 216)
   defining Unicode char U+00DF (decimal 223)
   defining Unicode char U+00E6 (decimal 230)
   defining Unicode char U+00EC (decimal 236)
   defining Unicode char U+00ED (decimal 237)
   defining Unicode char U+00EE (decimal 238)
   defining Unicode char U+00EF (decimal 239)
   defining Unicode char U+00F8 (decimal 248)
   defining Unicode char U+0131 (decimal 305)
   defining Unicode char U+0141 (decimal 321)
   defining Unicode char U+0142 (decimal 322)
   defining Unicode char U+0152 (decimal 338)
   defining Unicode char U+0153 (decimal 339)
   defining Unicode char U+2013 (decimal 8211)
   defining Unicode char U+2014 (decimal 8212)
   defining Unicode char U+2018 (decimal 8216)
   defining Unicode char U+2019 (decimal 8217)
   defining Unicode char U+201C (decimal 8220)
   defining Unicode char U+201D (decimal 8221)
)
Now handling font encoding OMS ...
... processing UTF-8 mapping file for font encodingOMS
(/usr/share/texmf/tex/latex/base/omsenc.dfu
File: omsenc.dfu 2006/03/30 v1.1i UTF-8 support for inputenc
   defining Unicode char U+00A7 (decimal 167)
   defining Unicode char U+00B6 (decimal 182)
   defining Unicode char U+00B7 (decimal 183)
   defining Unicode char U+2020 (decimal 8224)
   defining Unicode char U+2021 (decimal 8225)
   defining Unicode char U+2022 (decimal 8226)
)
Now handling font encoding OMX ...
... no UTF-8 mapping file for font encoding OMX
Now handling font encoding U ...
... no UTF-8 mapping file for font encoding U
Now handling font encoding PD1 ...
... no UTF-8 mapping file for font encoding PD1
   defining Unicode char U+00A9 (decimal 169)
   defining Unicode char U+00AA (decimal 170)
   defining Unicode char U+00AE (decimal 174)
   defining Unicode char U+00BA (decimal 186)
   defining Unicode char U+02C6 (decimal 710)
   defining Unicode char U+02DC (decimal 732)
   defining Unicode char U+200C (decimal 8204)
   defining Unicode char U+2026 (decimal 8230)
   defining Unicode char U+2122 (decimal 8482)
   defining Unicode char U+2423 (decimal 9251)
))
\saveparskip=\skip86
\saveparindent=\skip87
\tempparskip=\skip88
\tempparindent=\skip89
\@indexfile=\write5
\openout5 = `Samba3-Developers-Guide.idx'.
Writing index file Samba3-Developers-Guide.idx
\@glossaryfile=\write6
\openout6 = `Samba3-Developers-Guide.glo'.
Writing glossary file Samba3-Developers-Guide.glo 
(./Samba3-Developers-Guide.aux)
\openout1 = `Samba3-Developers-Guide.aux'.
LaTeX Font Info:    Checking defaults for OML/cmm/m/it on input line 370.
LaTeX Font Info:    ... okay on input line 370.
LaTeX Font Info:    Checking defaults for T1/cmr/m/n on input line 370.
LaTeX Font Info:    ... okay on input line 370.
LaTeX Font Info:    Checking defaults for OT1/cmr/m/n on input line 370.
LaTeX Font Info:    ... okay on input line 370.
LaTeX Font Info:    Checking defaults for OMS/cmsy/m/n on input line 370.
LaTeX Font Info:    ... okay on input line 370.
LaTeX Font Info:    Checking defaults for OMX/cmex/m/n on input line 370.
LaTeX Font Info:    ... okay on input line 370.
LaTeX Font Info:    Checking defaults for U/cmr/m/n on input line 370.
LaTeX Font Info:    ... okay on input line 370.
LaTeX Font Info:    Checking defaults for PD1/pdf/m/n on input line 370.
LaTeX Font Info:    ... okay on input line 370.
LaTeX Info: Redefining \selectfont on input line 370.
Package hyperref Info: Link coloring ON on input line 370.
(/usr/share/texmf/tex/latex/hyperref/nameref.sty
Package: nameref 2006/12/27 v2.28 Cross-referencing by name of section
(/usr/share/texmf/tex/latex/oberdiek/refcount.sty
Package: refcount 2006/02/20 v3.0 Data extraction from references (HO)
)
\c@section@level=\count132
)
LaTeX Info: Redefining \ref on input line 370.
LaTeX Info: Redefining \pageref on input line 370.
(./Samba3-Developers-Guide.out) (./Samba3-Developers-Guide.out)
\@outlinefile=\write7
\openout7 = `Samba3-Developers-Guide.out'.
LaTeX Info: Redefining \ref on input line 370.
LaTeX Info: Redefining \pageref on input line 370.
(/usr/share/texmf/tex/latex/ucs/ucsencs.def
File: ucsencs.def 2003/11/29 Fixes to fontencodings LGR, T3
)
Package ucs Warning: ***************************
(ucs)                You seem to have loaded inputencoding utf8
(ucs)                (LaTeX kernel UTF-8) instead of utf8x (ucs.sty UTF-8).
(ucs)                Probably you are compiling a document written for a
(ucs)                pre-august-2004 ucs.sty.
(ucs)                ***************************
(ucs)                Please use \usepackage[utf8x]{inputenc} instead of
(ucs)                \usepackage[utf8]{inputenc}.
(ucs)                ***************************
(ucs)                If you should really want to use ucs.sty and kernel's
(ucs)                utf8.def together, use \usepackage[utf8x,utf8]{inputenc}
(ucs)                to disable compatibility mode
(ucs)                ***************************
(ucs)                Activating compatibility mode.
(ucs)                ***************************
(ucs)                 on input line 370.
(/usr/share/texmf/tex/latex/ucs/utf8x.def
File: utf8x.def 2004/10/17 UCS: Input encoding UTF-8
)
LaTeX Font Info:    Try loading font information for U+lasy on input line 371.
(/usr/share/texmf/tex/latex/base/ulasy.fd
File: ulasy.fd 1998/08/17 v2.2e LaTeX symbol font definitions
)
LaTeX Font Info:    Try loading font information for U+msa on input line 371.
(/usr/share/texmf/tex/latex/amsfonts/umsa.fd
File: umsa.fd 2002/01/19 v2.2g AMS font definitions
)
LaTeX Font Info:    Try loading font information for U+msb on input line 371.
(/usr/share/texmf/tex/latex/amsfonts/umsb.fd
File: umsb.fd 2002/01/19 v2.2g AMS font definitions
) [1
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]
LaTeX Font Info:    Try loading font information for OML+cmr on input line 381.
 (/usr/share/texmf/tex/latex/base/omlcmr.fd
File: omlcmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
)
LaTeX Font Info:    Font shape `OML/cmr/m/n' in size <10.95> not available
(Font)              Font shape `OML/cmm/m/it' tried instead on input line 381.
Overfull \hbox (3.46635pt too wide) in paragraph at lines 383--384
\OT1/cmr/m/n/10.95 tri-bu-tion. A copy can be found on-line at \OML/cmm/m/it/10
.95 <[][]$\OT1/cmtt/m/n/10.95 http : / / www . fsf . org / licenses /
 []
<xslt/figures/warning.pdf, id=892, 33.12375pt x 33.12375pt>
File: xslt/figures/warning.pdf Graphic file (type pdf)
<use xslt/figures/warning.pdf>pdfTeX warning (ext4): destination with the same 
identifier (name{page.i}) has been already used, duplicate ignored
<to be read again> 
                   \relax 
l.390 \end{abstract}
                     [1 <./xslt/figures/warning.pdf>]
Package hyperref Warning: No destination for bookmark of \addcontentsline,
(hyperref)                destination is added on input line 395.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref)                removing `\uppercase' on input line 395.
(/usr/share/texmf/tex/latex/ucs/data/uni-0.def
File: uni-0.def 2004/10/17 UCS: Unicode data U+0000..U+00FF
)
LaTeX Font Info:    Try loading font information for OMS+cmr on input line 402.
(/usr/share/texmf/tex/latex/base/omscmr.fd
File: omscmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
)
LaTeX Font Info:    Font shape `OMS/cmr/m/n' in size <10.95> not available
(Font)              Font shape `OMS/cmsy/m/n' tried instead on input line 402.
Package Fancyhdr Warning: \headheight is too small (12.0pt): 
 Make it at least 13.59999pt.
 We now make it that large for the rest of the document.
 This may cause the page layout to be inconsistent, however.
[2
] [3] [4
] (./Samba3-Developers-Guide.toc
./Samba3-Developers-Guide.toc:2: LaTeX Error: Something's wrong--perhaps a miss
ing \item.
See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.2 ...}{\uppercase {Attribution}}{ii}{section*.1}
                                                  
Try typing  <return>  to proceed.
If that doesn't work, type  X <return>  to quit.
[5]
Overfull \hbox (14.6891pt too wide) in paragraph at lines 37--37
 [][] []\OT1/cmr/m/n/10.95 DOM[]SID2 (do-main SID struc-ture, SIDS stored 
 []
Overfull \hbox (0.97353pt too wide) in paragraph at lines 42--42
 [][] []\OT1/cmr/m/n/10.95 CLNT[]INFO2 (server, client struc-ture, client 
 []
[6] [7] [8] [9] [10])
\tf@toc=\write8
\openout8 = `Samba3-Developers-Guide.toc'.
 [1] [2
]pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has
 been already used, duplicate ignored
<to be read again> 
                   \relax 
l.602 \part{The protocol}
                          [1]pdfTeX warning (ext4): destination with the same i
dentifier (name{page.2}) has been already used, duplicate ignored
<to be read again> 
                   \relax 
l.602 \part{The protocol}
                          [2]
Chapter 1.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref)                removing `\uppercase' on input line 608.
[3
] [4] [5]
Overfull \hbox (18.97585pt too wide) in paragraph at lines 683--684
\OT1/cmr/m/n/10.95 placed on the file. These modes (DENY[]NONE, DENY[]READ, DEN
Y[]WRITE,
 []
[6] [7] [8]
Chapter 2.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref)                removing `\uppercase' on input line 725.
Overfull \hbox (16.43271pt too wide) in paragraph at lines 743--744
[]\OML/cmm/m/it/10.95 <[][]$\OT1/cmtt/m/n/10.95 http : / / ntbugtraq . rc . on 
. ca / SCRIPTS / WA . EXE ? A2 = ind9708 ; L = ntbugtraq ;
 []
[9
]
LaTeX Font Info:    Font shape `OML/cmr/m/n' in size <9> not available
(Font)              Font shape `OML/cmm/m/it' tried instead on input line 747.
 [10]
Overfull \hbox (562.98012pt too wide) in paragraph at lines 802--809
[] 
 []
[11] [12] [13] [14] [15]
LaTeX Font Info:    Font shape `OMS/cmr/m/it' in size <10.95> not available
(Font)              Font shape `OMS/cmsy/m/n' tried instead on input line 1075.
 [16] [17] [18] [19] [20] [21] [22] [23] [24]
Overfull \hbox (6.30853pt too wide) in paragraph at lines 1512--1514
[]\OT1/cmr/m/n/10.95 0x00000004 Any server run-ning with SQL server 
 []
Overfull \hbox (7.60333pt too wide) in paragraph at lines 1518--1520
[]\OT1/cmr/m/n/10.95 0x00000010 Backup do-main con-troller 
 []
[25]
Overfull \hbox (1.0943pt too wide) in paragraph at lines 1536--1538
[]\OT1/cmr/m/n/10.95 0x00000400 Server run-ning di-alin ser-vice. 
 []
Overfull \hbox (26.06747pt too wide) in paragraph at lines 1563--1565
[]\OT1/cmr/m/n/10.95 0x40000000 Enu-mer-ate only en-tries marked
 []
[26] [27]
Overfull \hbox (4.57462pt too wide) in paragraph at lines 1622--1623
[]\OT1/cmr/m/n/10.95 lkcl/01nov97 there ap-pear to be two ad-di-tional bytes af
-ter the null-terminated
 []
Underfull \vbox (badness 1655) has occurred while \output is active []
 [28]
[29] [30] [31] [32] [33]
LaTeX Font Info:    Font shape `OMS/cmr/bx/n' in size <10.95> not available
(Font)              Font shape `OMS/cmsy/b/n' tried instead on input line 1861.
Overfull \hbox (41.69876pt too wide) in paragraph at lines 1899--1909
[][] 
 []
Underfull \vbox (badness 2229) has occurred while \output is active []
 [34]
[35] [36] [37]
Overfull \hbox (55.35628pt too wide) in paragraph at lines 2101--2103
[]
 []
[38] [39]
Overfull \hbox (38.39853pt too wide) in paragraph at lines 2194--2206
[][] 
 []
[40] [41] [42] [43] [44]
LaTeX Font Info:    Font shape `OML/cmr/m/it' in size <10.95> not available
(Font)              Font shape `OML/cmm/m/it' tried instead on input line 2413.
 [45] [46] [47] [48] [49] [50]
Overfull \hbox (56.02739pt too wide) in paragraph at lines 2675--2677
[]\OT1/cmr/m/n/10.95 md4(machine[]password) == md4(lsadump $ma-chine.acc) == pw
-dump(machine$)
 []
[51] [52] [53] [54]
Overfull \hbox (3.73003pt too wide) in paragraph at lines 2869--2878
\OT1/cmr/m/it/10.95 Groupname: \OT1/cmr/m/n/10.95 DO-MAIN[]ALIAS[]RID[]SYSTEM[]
OPS \OT1/cmr/m/it/10.95 ????: \OT1/cmr/m/n/10.95 0x0000 \OT1/cmr/m/it/10.95 RID
: \OT1/cmr/m/n/10.95 0225 
 []
Overfull \hbox (5.7071pt too wide) in paragraph at lines 2869--2878
\OT1/cmr/m/it/10.95 Groupname: \OT1/cmr/m/n/10.95 DO-MAIN[]ALIAS[]RID[]BACKUP[]
OPS \OT1/cmr/m/it/10.95 ????: \OT1/cmr/m/n/10.95 0x0000 \OT1/cmr/m/it/10.95 RID
: \OT1/cmr/m/n/10.95 0227 
 []
Overfull \hbox (5.41507pt too wide) in paragraph at lines 2869--2878
\OT1/cmr/m/it/10.95 Groupname: \OT1/cmr/m/n/10.95 DO-MAIN[]ALIAS[]RID[]REPLICAT
OR \OT1/cmr/m/it/10.95 ????: \OT1/cmr/m/n/10.95 0x0000 \OT1/cmr/m/it/10.95 RID:
 \OT1/cmr/m/n/10.95 0228 
 []
[55] [56
]pdfTeX warning (ext4): destination with the same identifier (name{page.55}) ha
s been already used, duplicate ignored
<to be read again> 
                   \relax 
l.2884 \part{Samba Basics}
                           [55]pdfTeX warning (ext4): destination with the same
 identifier (name{page.56}) has been already used, duplicate ignored
<to be read again> 
                   \relax 
l.2884 \part{Samba Basics}
                           [56]
Chapter 3.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref)                removing `\uppercase' on input line 2890.
[57
] [58] [59]
Chapter 4.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref)                removing `\uppercase' on input line 2994.
[60
] [61] [62] [63] [64] [65]
Chapter 5.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref)                removing `\uppercase' on input line 3267.
Overfull \hbox (4.56447pt too wide) in paragraph at lines 3277--3278
[]\OT1/cmr/m/n/10.95 In the past Samba had very ad-hoc char-ac-ter set han-dlin
g. Scat-tered through-
 []
[66
]
Overfull \hbox (0.8455pt too wide) in paragraph at lines 3330--3331
[]\OT1/cmr/m/n/10.95 You may also call the pull[]ascii/pull[]ucs2 or push[]asci
i/push[]ucs2 func-
 []
Underfull \vbox (badness 1163) has occurred while \output is active []
 [67]
[68] [69] [70] [71]
Overfull \hbox (5.84808pt too wide) in paragraph at lines 3541--3542
\OT1/cmr/m/n/10.95 Note that all point-ers must be ad-justed be-fore use. The f
unc-tion fix[]char[]ptr()
 []
[72] [73]
Chapter 6.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref)                removing `\uppercase' on input line 3607.
[74
]
Overfull \hbox (2.87611pt too wide) in paragraph at lines 3641--3642
[]\OT1/cmr/m/n/10.95 don't use bzero use mem-set, or ZERO[]STRUCT and ZERO[]STR
UCTP
 []
[75] [76] [77]
Chapter 7.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref)                removing `\uppercase' on input line 3760.
LaTeX Font Info:    Font shape `OT1/cmtt/bx/n' in size <10.95> not available
(Font)              Font shape `OT1/cmtt/m/n' tried instead on input line 3776.
Overfull \hbox (21.41238pt too wide) in paragraph at lines 3785--3786
[]\OT1/cmr/m/n/10.95 Don't sim-
 []
[78
] [79]
Chapter 8.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref)                removing `\uppercase' on input line 3818.
Overfull \hbox (133.8005pt too wide) in paragraph at lines 3828--3836
[][] 
 []
[80
]
Overfull \hbox (25.37553pt too wide) in paragraph at lines 3871--3872
\OT1/cmr/m/n/10.95 tem/back-end.so). If the first char-ac-ter in 'back-end' is 
a slash, smb[]probe[]module()
 []
Overfull \hbox (16.9651pt too wide) in paragraph at lines 3890--3891
\OT1/cmr/m/n/10.95 should re-turn NT[]STATUS[]OK on suc-cess and NT[]STATUS[]UN
SUCCESSFUL
 []
[81] <xslt/figures/note.pdf, id=1835, 28.105pt x 28.105pt>
File: xslt/figures/note.pdf Graphic file (type pdf)
<use xslt/figures/note.pdf>
Underfull \vbox (badness 1509) has occurred while \output is active []
 [82]
[83 <./xslt/figures/note.pdf>] [84
]pdfTeX warning (ext4): destination with the same identifier (name{page.83}) ha
s been already used, duplicate ignored
<to be read again> 
                   \relax 
l.3940 \part{Samba Subsystems}
                               [83]pdfTeX warning (ext4): destination with the 
same identifier (name{page.84}) has been already used, duplicate ignored
<to be read again> 
                   \relax 
l.3940 \part{Samba Subsystems}
                               [84]
Chapter 9.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref)                removing `\uppercase' on input line 3946.
Overfull \hbox (22.56313pt too wide) in paragraph at lines 3963--3964
[]\OT1/cmr/m/n/10.95 In the init[]module func-tion, the li-brary should call rp
c[]pipe[]register[]commands().
 []
Overfull \hbox (106.1347pt too wide) in paragraph at lines 3977--3979
[]\OT1/cmr/m/n/10.95 Version num-ber of the RPC in-ter-face. Use the de-fine \O
T1/cmr/m/it/10.95 SMB[]RPC[]INTERFACE[]VERSION
 []
[85
] [86]
Chapter 10.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref)                removing `\uppercase' on input line 3997.
Underfull \vbox (badness 3396) has occurred while \output is active []
 [87
]
[88] [89] [90] [91] [92] [93]
Overfull \hbox (34.69206pt too wide) in paragraph at lines 4289--4290
\OT1/cmr/m/n/10.95 Each VFS func-tion has as first pa-ram-e-ter a pointer to th
e mod-ules vfs[]handle[]struct. 
 []
[94] [95]
Overfull \hbox (89.54544pt too wide) in paragraph at lines 4356--4357
[]\OT1/cmr/m/n/10.95 How SMB[]VFS[]LAYER[]TRANSPARENT func-tions can call the S
MB[]VFS[]LAYER[]OPAQUE
 []
[96] [97]
Overfull \hbox (5.56621pt too wide) in paragraph at lines 4438--4439
\OT1/cmr/m/n/10.95 *han-dle, con-nec-tion[]struct *conn, const char *ser-vice, 
const char *user); 
 []
Overfull \hbox (62.10889pt too wide) in paragraph at lines 4443--4444
[]\OT1/cmr/m/n/10.95 Replace "de-fault[]vfs[]ops." with "smb[]vfs[]next[]". e.g
. de-fault[]vfs[]ops.connect(conn,
 []
Overfull \hbox (21.24098pt too wide) in paragraph at lines 4448--4449
[]\OT1/cmr/m/n/10.95 Uppercase all "smb[]vfs[]next[]*" func-tions. e.g. smb[]vf
s[]next[]connect(conn,
 []
Overfull \hbox (131.82602pt too wide) in paragraph at lines 4453--4454
\OT1/cmr/m/n/10.95 e.g. SMB[]VFS[]NEXT[]CONNECT(conn, ser-vice, user); -\OML/cm
m/m/it/10.95 > \OT1/cmr/m/n/10.95 SMB[]VFS[]NEXT[]CONNECT(handle,
 []
[98] [99] [100]
Overfull \hbox (1216.5763pt too wide) in paragraph at lines 4571--4577
\OT1/cmr/m/n/10.95 vfs[]ops structs or re-mem-ber the struct smb[]vfs[]handle[]
struct. [] 
 []
Overfull \hbox (1165.73167pt too wide) in paragraph at lines 4582--4588
\OT1/cmr/m/n/10.95 tains needed code. [] 
 []
Overfull \hbox (447.87314pt too wide) in paragraph at lines 4593--4600
\OT1/cmr/m/n/10.95 ter to have this data on a con-nec-tion ba-sis. []
 []
[101] [102] [103] [104] [105]
Chapter 11.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref)                removing `\uppercase' on input line 4789.
Underfull \vbox (badness 1184) has occurred while \output is active []
 [106
]
[107] [108] [109]
Chapter 12.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref)                removing `\uppercase' on input line 5014.
[110
] [111]
Chapter 13.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref)                removing `\uppercase' on input line 5069.
[112
] [113]
Overfull \hbox (42.40814pt too wide) in paragraph at lines 5111--5112
[]\OT1/cmtt/m/n/10.95 $cat /etc/passwd | mksmbpasswd.sh > /usr/local/samba/priv
ate/smbpasswd 
 []
Overfull \hbox (25.16208pt too wide) in paragraph at lines 5115--5116
[]\OT1/cmtt/m/n/10.95 $ypcat passwd | mksmbpasswd.sh > /usr/local/samba/private
/smbpasswd 
 []
Overfull \hbox (7.43182pt too wide) in paragraph at lines 5136--5137
\OT1/cmr/m/n/10.95 [\OT1/cmtt/m/it/10.95 Ac-count type\OT1/cmr/m/n/10.95 ] and 
\OT1/cmtt/m/it/10.95 last-change--time \OT1/cmr/m/n/10.95 sec-tions are sig-nif
-i-cant and are looked
 []
[114] [115] [116
]pdfTeX warning (ext4): destination with the same identifier (name{page.115}) h
as been already used, duplicate ignored
<to be read again> 
                   \relax 
l.5167 \part{Debugging and tracing}
                                    [115]pdfTeX warning (ext4): destination wit
h the same identifier (name{page.116}) has been already used, duplicate ignored
<to be read again> 
                   \relax 
l.5167 \part{Debugging and tracing}
                                    [116]
Chapter 14.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref)                removing `\uppercase' on input line 5173.
[117
]
LaTeX Font Info:    Font shape `OML/cmr/bx/n' in size <10.95> not available
(Font)              Font shape `OML/cmm/b/it' tried instead on input line 5204.
 [118] [119]
Chapter 15.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref)                removing `\uppercase' on input line 5232.
[120
]
Overfull \hbox (30.75613pt too wide) in paragraph at lines 5307--5308
\OT1/cmr/m/n/10.95 queue TDB is opened us-ing the wrap-per func-tion print-ing.
c:get[]print[]db[]byname().
 []
Overfull \hbox (35.989pt too wide) in paragraph at lines 5307--5308
\OT1/cmr/m/n/10.95 The func-tion en-sures that smbd does not open more than MAX
[]PRINT[]DBS[]OPEN
 []
Overfull \hbox (49.30132pt too wide) in paragraph at lines 5307--5308
\OT1/cmr/m/n/10.95 de-scrip-tors. If the num-ber of open queue TDB's ex-ceeds t
he MAX[]PRINT[]DBS[]OPEN
 []
[121] [122] [123] [124]
Overfull \hbox (9.8246pt too wide) in paragraph at lines 5518--5519
\OT1/cmr/m/n/10.95 and the func-tions send[]spoolss[]notify2[]msg() and print[]
notify[]send[]messages()
 []
Overfull \hbox (31.76102pt too wide) in paragraph at lines 5553--5554
[]\OT1/cmr/m/n/10.95 The count field is the num-ber of en-tries in the SPOOL[]N
OTIFY[]INFO[]DATA
 []
[125] [126]pdfTeX warning (ext4): destination with the same identifier (name{pa
ge.125}) has been already used, duplicate ignored
<to be read again> 
                   \relax 
l.5595 \part{Appendices}
                         [125
]pdfTeX warning (ext4): destination with the same identifier (name{page.126}) h
as been already used, duplicate ignored
<to be read again> 
                   \relax 
l.5595 \part{Appendices}
                         [126]
Chapter 16.
Package hyperref Warning: Token not allowed in a PDFDocEncoded string,
(hyperref)                removing `\uppercase' on input line 5601.
Overfull \hbox (47.5892pt too wide) in paragraph at lines 5626--5627
\OT1/cmr/m/n/10.95 ules such as idmap[]XXX and vfs[]XXX. For ex-am-ple, \OT1/cm
tt/m/n/10.95 --with-shared-modules=idmap[]
 []
[127
] (./Samba3-Developers-Guide.aux) ) 
Here is how much of TeX's memory you used:
 9055 strings out of 94079
 117853 string characters out of 1165775
 193541 words of memory out of 3500000
 11450 multiletter control sequences out of 10000+50000
 21266 words of font info for 83 fonts, out of 1200000 for 2000
 645 hyphenation exceptions out of 8191
 33i,12n,45p,834b,544s stack positions out of 5000i,500n,6000p,200000b,5000s
pdfTeX warning (dest): name{id2407184} has b
een referenced but does not exist, replaced by a fixed one
</usr/share/texmf/fonts/type1/bluesky/cm/cmbsy10.pfb></usr/share/texmf/fonts/ty
pe1/bluesky/cm/cmbx10.pfb></usr/share/texmf/fonts/type1/bluesky/cm/cmbx12.pfb><
/usr/share/texmf/fonts/type1/bluesky/cm/cmcsc10.pfb></usr/share/texmf/fonts/typ
e1/bluesky/cm/cmitt10.pfb></usr/share/texmf/fonts/type1/bluesky/cm/cmmi10.pfb><
/usr/share/texmf/fonts/type1/bluesky/cm/cmmi9.pfb></usr/share/texmf/fonts/type1
/bluesky/cm/cmmib10.pfb></usr/share/texmf/fonts/type1/bluesky/cm/cmr10.pfb></us
r/share/texmf/fonts/type1/bluesky/cm/cmr12.pfb></usr/share/texmf/fonts/type1/bl
uesky/cm/cmr6.pfb></usr/share/texmf/fonts/type1/bluesky/cm/cmr8.pfb></usr/share
/texmf/fonts/type1/bluesky/cm/cmsl10.pfb></usr/share/texmf/fonts/type1/bluesky/
cm/cmss10.pfb></usr/share/texmf/fonts/type1/bluesky/cm/cmss17.pfb></usr/share/t
exmf/fonts/type1/bluesky/cm/cmss8.pfb></usr/share/texmf/fonts/type1/bluesky/cm/
cmssbx10.pfb></usr/share/texmf/fonts/type1/bluesky/cm/cmsy10.pfb></usr/share/te
xmf/fonts/type1/bluesky/cm/cmti10.pfb></usr/share/texmf/fonts/type1/bluesky/cm/
cmtt10.pfb></usr/share/texmf/fonts/type1/bluesky/cm/cmtt9.pfb>
Output written on Samba3-Developers-Guide.pdf (148 pages, 585512 bytes).
PDF statistics:
 2337 PDF objects out of 2487 (max. 8388607)
 701 named destinations out of 1000 (max. 131072)
 1779 words of extra memory for PDF output out of 10000 (max. 10000000)
 
     |