Changeset 395


Ignore:
Timestamp:
Jan 28, 2010, 6:25:35 PM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Remove deprecated MEMLEN token

Location:
branches/client-1.5/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/client-1.5/src/Makefile.kmk

    r388 r395  
    3636ndpsmb_CFLAGS = -Zomf
    3737# YD -O2/O3 triggers stack variable alignment bug in gcc 4.3.2/4.4.0!
    38 ndpsmb_CFLAGS.release = -g -O1 -march=pentium -mtune=pentium4
     38# ndpsmb_CFLAGS.release = -g -O1 -march=pentium -mtune=pentium4
    3939# SCS when building with gcc 3.3.5 use the below cflags
    40 # ndpsmb_CFLAGS.release = -s -O3 -march=pentium -mcpu=pentium3
     40ndpsmb_CFLAGS.release = -s -O3 -march=pentium -mcpu=pentium3
    4141ndpsmb_CFLAGS.debug = -g -O0 -DDEBUG_PRINTF
    4242ndpsmb_LDFLAGS = -Zomf -Zno-fork -Zmap -Zbin-files
  • branches/client-1.5/src/ndpsmb.c

    r189 r395  
    207207        {ND_PROP_STRING, 0, "MASTER", "WORKGROUP"},
    208208        { ND_PROP_ULONG, 0, "MASTERTYPE", "1"},
    209         { ND_PROP_ULONG, 0, "MEMLEN", "2"},
    210209        {ND_PROP_STRING, 0, "LOGFILE", ""},
    211210        { ND_PROP_ULONG, 0, "LOGLEVEL", "0"},
  • branches/client-1.5/src/rc/rc.dlg

    r190 r395  
    3030                        WS_VISIBLE
    3131        ENTRYFIELD      "", ENT_MASTER, 147, 33, 90, 8, ES_MARGIN
    32         LTEXT           "Memory buffer:", LBL_MEMLEN, 253, 135, 10, 10,
    33                         DT_BOTTOM | NOT WS_VISIBLE
    34         CONTROL         "", CMB_MEMLEN, 251, 98, 13, 11, WC_COMBOBOX,
    35                         CBS_DROPDOWNLIST | WS_GROUP | WS_TABSTOP
    3632        LTEXT           "Logfile:", LBL_LOGFILE, 251, 124, 11, 10, DT_BOTTOM |
    3733                        NOT WS_VISIBLE
  • branches/client-1.5/src/rc/rc.h

    r186 r395  
    1515#define ENT_MASTER                  1012
    1616#define CMB_MASTER                  1013
    17 #define LBL_MEMLEN                  1014
    18 #define CMB_MEMLEN                  1015
    1917#define LBL_PROP                    1016
    2018#define LBL_LOGFILE                 1017
  • branches/client-1.5/src/rc/rc.rc

    r189 r395  
    4343   "    master - name of master server or master workgroup\r\n"
    4444   "    mastertype - 0 if 'master' is the name of master server, 1 if 'master' is the name of master workgroup\r\n"
    45    "    memlen - the size of shared memory buffer allocated for every NDFS connection in size of 64k blocks\r\n"
    4645   "    logfile - file to log records from smbcd.exe. Used only if smbcd.exe is run by ndpsmb.dll plugin, not manually\r\n"
    4746   "    loglevel - level of logging (0-9) for smbcd.exe. Used only if smbcd.exe is run by ndpsmb.dll plugin, not manually\r\n"
     
    103102RCDATA (DLG_ID + 7)
    104103{
    105     CMB_MEMLEN, PARMTYPE_INT, 1L, 10L, "memlen", "%d", 2L,
    106     "64k",
    107     "128k",
    108     "192k",
    109     "256k",
    110     "320k",
    111     "384k",
    112     "448k",
    113     "512k",
    114     "576k",
    115     "640k"
     104    ENT_LOGFILE, PARMTYPE_STRING, 1L, 256L, "logfile", "%s", ""
    116105}
    117106
    118107RCDATA (DLG_ID + 8)
    119 {
    120     ENT_LOGFILE, PARMTYPE_STRING, 1L, 256L, "logfile", "%s", ""
    121 }
    122 
    123 RCDATA (DLG_ID + 9)
    124108{
    125109    CMB_LOGLEVEL, PARMTYPE_INT, 0L, 9L, "loglevel", "%d", 0L,
     
    136120}
    137121
    138 RCDATA (DLG_ID + 10)
     122RCDATA (DLG_ID + 9)
    139123{
    140124    CHK_EASUPPORT, PARMTYPE_INT, 0L, 1L, "easupport", "%d", 1L,
     
    143127}
    144128   
    145 RCDATA (DLG_ID + 11)
     129RCDATA (DLG_ID + 10)
    146130{
    147131    ENT_SPASS, PARMTYPE_STRING, 1L, 255L, "spassword", "%s", ""
    148132}
    149133
    150 RCDATA (DLG_ID + 12)
     134RCDATA (DLG_ID + 11)
    151135{
    152136    1
Note: See TracChangeset for help on using the changeset viewer.