Changeset 232 for branches/samba-3.2.x/source/libsmb/libsmb_setget.c
- Timestamp:
- May 27, 2009, 9:09:42 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.2.x/source/libsmb/libsmb_setget.c
r133 r232 195 195 196 196 /** 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 */ 203 smbc_bool 204 smbc_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 */ 216 void 217 smbc_setOptionCaseSensitive(SMBCCTX *c, smbc_bool b) 218 { 219 c->internal->case_sensitive = b; 220 } 221 222 /** 197 223 * Get from how many local master browsers should the list of workgroups be 198 224 * 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.