ports/security/wipe/files/patch-prompt.c
Dmitry Marakasov 705c944592 - Clarify LICENSE
- Don't install unneeded docs
- Switch to options helpers
- Regenerate patches with `make makepatch`
2016-03-12 14:09:35 +00:00

37 lines
943 B
C

--- prompt.c.orig 2009-04-26 03:18:13 UTC
+++ prompt.c
@@ -41,9 +41,9 @@
#include "std.h"
#include "percent.h"
+#include "main.h"
#include "file.h"
#include "dir.h"
-#include "main.h"
#include "wipe.h"
#include "blkdev.h"
#include "prompt.h"
@@ -69,7 +69,10 @@ public void prompt_destroy(struct file_s
}
#endif
- if (options.force) goto destroy;
+ if (options.force){
+ chmod(f->real_name, S_IRWXU);
+ goto destroy;
+ }
permdenied = access(f->name, perm);
if (options.interactive) /* force overrides interaction */
@@ -119,7 +122,10 @@ public void prompt_destroy(struct file_s
fgets(prompt, sizeof(prompt), stdin);
- if (prompt[0] == 'y' || prompt[0] == 'Y') goto destroy;
+ if (prompt[0] == 'y' || prompt[0] == 'Y'){
+ chmod(f->real_name, S_IRWXU);
+ goto destroy;
+ }
if (prompt[0] == 'n' || prompt[0] == 'N') return;
}
}