# | Line 8 | Line 8 | |
---|---|---|
8 | ||
9 | void Maker::make() | |
10 | { | |
11 | + | if (!good) return; |
12 | + | |
13 | samba(); | |
14 | ||
15 | struct stat dir; | |
# | Line 171 | Line 173 | void Maker::samba(ipstream& pin) | |
173 | } | |
174 | } | |
175 | ||
174 | – | void Maker::strip(char* name) |
175 | – | { |
176 | – | for (unsigned index = strlen(name); index > 0; index--) |
177 | – | { |
178 | – | if (name[index - 1] == ' ') |
179 | – | { |
180 | – | name[index - 1] = '\0'; |
181 | – | } |
182 | – | else |
183 | – | { |
184 | – | break; |
185 | – | } |
186 | – | } |
187 | – | } |
188 | – | |
176 | void Maker::make(const string& folder, const string& user) | |
177 | { | |
178 | struct stat dir; |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |