Ignore:
Timestamp:
May 27, 2009, 9:09:42 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update 3.2 branch to 3.2.8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.2.x/source/libsmb/libsmb_setget.c

    r133 r232  
    195195
    196196/**
     197 * Get whether to treat file names as case-sensitive if we can't determine
     198 * when connecting to the remote share whether the file system is case
     199 * sensitive. This defaults to FALSE since it's most likely that if we can't
     200 * retrieve the file system attributes, it's a very old file system that does
     201 * not support case sensitivity.
     202 */
     203smbc_bool
     204smbc_getOptionCaseSensitive(SMBCCTX *c)
     205{
     206        return c->internal->case_sensitive;
     207}
     208
     209/**
     210 * Set whether to treat file names as case-sensitive if we can't determine
     211 * when connecting to the remote share whether the file system is case
     212 * sensitive. This defaults to FALSE since it's most likely that if we can't
     213 * retrieve the file system attributes, it's a very old file system that does
     214 * not support case sensitivity.
     215 */
     216void
     217smbc_setOptionCaseSensitive(SMBCCTX *c, smbc_bool b)
     218{
     219        c->internal->case_sensitive = b;
     220}
     221
     222/**
    197223 * Get from how many local master browsers should the list of workgroups be
    198224 * retrieved.  It can take up to 12 minutes or longer after a server becomes a
Note: See TracChangeset for help on using the changeset viewer.