- Timestamp:
- Nov 22, 2005, 7:06:13 PM (19 years ago)
- Location:
- trunk/mondo
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/mondo/ChangeLog
r129 r133 1 1 MONDO CHANGES 2 2 3 - now handles cifs correctly 3 4 4 5 v2.05_berlios (Bruno Cornec <bcornec@users.berlios.de) -
trunk/mondo/mondo/common/libmondo-devices.c
r127 r133 2184 2184 strcpy(exclude_these_directories, 2185 2185 call_program_and_get_last_line_of_output 2186 ("mount -t coda,ncpfs,nfs,smbfs | tr -s '\t' ' ' | cut -d' ' -f3 | tr -s '\n' ' ' | awk '{print $0;}'"));2186 ("mount -t coda,ncpfs,nfs,smbfs,cifs | tr -s '\t' ' ' | cut -d' ' -f3 | tr -s '\n' ' ' | awk '{print $0;}'")); 2187 2187 strcpy(exclude_these_devices, 2188 2188 call_program_and_get_last_line_of_output 2189 ("cat /etc/fstab | tr -s '\t' ' ' | grep -E '( (coda|ncpfs|nfs|smbfs ) )' | cut -d' ' -f1 | tr -s '\n' ' ' | awk '{print $0;}'"));2189 ("cat /etc/fstab | tr -s '\t' ' ' | grep -E '( (coda|ncpfs|nfs|smbfs|cifs) )' | cut -d' ' -f1 | tr -s '\n' ' ' | awk '{print $0;}'")); 2190 2190 sprintf(result_sz, "%s %s", exclude_these_directories, 2191 2191 exclude_these_devices); … … 2214 2214 strcpy(exclude_these_directories, 2215 2215 call_program_and_get_last_line_of_output 2216 ("mount -t coda,ncpfs,nfs,smbfs | tr -s '\t' ' ' | cut -d' ' -f3 | tr -s '\n' ' ' | awk '{print $0;}'"));2216 ("mount -t coda,ncpfs,nfs,smbfs,cifs | tr -s '\t' ' ' | cut -d' ' -f3 | tr -s '\n' ' ' | awk '{print $0;}'")); 2217 2217 strcpy(exclude_these_devices, 2218 2218 call_program_and_get_last_line_of_output 2219 ("cat /etc/fstab | tr -s '\t' ' ' | grep -E '( (coda|ncpfs|nfs|smbfs ) )' | cut -d' ' -f1 | tr -s '\n' ' ' | awk '{print $0;}'"));2219 ("cat /etc/fstab | tr -s '\t' ' ' | grep -E '( (coda|ncpfs|nfs|smbfs|cifs) )' | cut -d' ' -f1 | tr -s '\n' ' ' | awk '{print $0;}'")); 2220 2220 sprintf(result_sz, "%s", exclude_these_directories); 2221 2221 paranoid_free(exclude_these_devices);
Note:
See TracChangeset
for help on using the changeset viewer.