Changeset 8 for rpm/trunk/lib/fsm.c
- Timestamp:
- Sep 3, 2010, 5:27:35 PM (15 years ago)
- File:
-
- 1 edited
-
rpm/trunk/lib/fsm.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rpm/trunk/lib/fsm.c
r2 r8 832 832 fdFiniDigest(fsm->wfd, fsm->digestalgo, &digest, NULL, asAscii); 833 833 834 #ifndef __EMX__ // YD FIXME 834 835 if (digest == NULL) { 835 836 rc = CPIOERR_DIGEST_MISMATCH; 836 837 goto exit; 837 838 } 839 #endif 838 840 839 841 if (fsm->digest != NULL) { … … 2072 2074 break; 2073 2075 case FSM_MKDIR: 2076 #ifdef __EMX__ 2077 if (strcmp(fsm->path, "/@unixroot")==0) 2078 rc = 0; 2079 else 2080 #endif 2074 2081 rc = mkdir(fsm->path, (st->st_mode & 07777)); 2075 2082 if (_fsm_debug && (stage & FSM_SYSCALL)) … … 2080 2087 break; 2081 2088 case FSM_RMDIR: 2089 #ifdef __EMX__ 2090 if (strcmp(fsm->path, "/@unixroot")==0) 2091 rc = 0; 2092 else 2093 #endif 2082 2094 rc = rmdir(fsm->path); 2083 2095 if (_fsm_debug && (stage & FSM_SYSCALL))
Note:
See TracChangeset
for help on using the changeset viewer.
