summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console
authorzecke <zecke>2004-05-01 21:18:03 (UTC)
committer zecke <zecke>2004-05-01 21:18:03 (UTC)
commit8aa8b5166653d52f9623fbb1391d044916a2a260 (patch) (side-by-side diff)
treeebd284f0bb38d948ad6e4b4ab3eef62fbff7bcae /noncore/apps/opie-console
parent49227638e76fa71209390a9c42528a02e3803e3d (diff)
downloadopie-8aa8b5166653d52f9623fbb1391d044916a2a260.zip
opie-8aa8b5166653d52f9623fbb1391d044916a2a260.tar.gz
opie-8aa8b5166653d52f9623fbb1391d044916a2a260.tar.bz2
Do not include symbols we don't need normally
Diffstat (limited to 'noncore/apps/opie-console') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/fixit.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/fixit.h b/noncore/apps/opie-console/fixit.h
index 501914e..6a8a101 100644
--- a/noncore/apps/opie-console/fixit.h
+++ b/noncore/apps/opie-console/fixit.h
@@ -19,16 +19,17 @@ public:
void fixIt();
/* no real interested in implementing it */
void breakIt() {
};
char* m_file;
};
+#ifdef FSCKED_DISTRI
FixIt::FixIt() {
/* the new inittab */
m_file = "#\n# /etc/inittab"
"#"
""
"# 0 - halt (Do NOT set initdefault to this)"
"# 1 - Single user mode"
"# 2 - Multiuser, without NFS (The same as 3, if you do not have networking)"
@@ -79,10 +80,11 @@ void FixIt::fixIt() {
QFile file( "/etc/inittab" );
if ( file.open(IO_WriteOnly | IO_Raw ) ) {
file.writeBlock(m_file,strlen(m_file) );
}
file.close();
::kill( SIGHUP, 1 );
}
+#endif
#endif