]> git.lyx.org Git - lyx.git/blobdiff - src/support/userinfo.cpp
File missing in the tarball
[lyx.git] / src / support / userinfo.cpp
index 3a8d43e556057316e13292e616bd73cd1dee4223..5f2cfcab65599d954b565d8df803d0ab4c93a2ef 100644 (file)
 
 #include "support/userinfo.h"
 #include "support/environment.h"
+#include "support/docstring.h"
 
-#include <boost/assert.hpp>
+#include "support/lassert.h"
 
 #if defined (_WIN32)
-# include "gettext.h"
+# include "support/gettext.h"
 # include <windows.h>
 # include <lmcons.h>
 #else
@@ -29,7 +30,7 @@
 # include <sys/types.h>
 #endif
 
-using std::string;
+using namespace std;
 
 namespace lyx {
 namespace support {
@@ -44,8 +45,8 @@ docstring const user_name()
                return _("Unknown user");
        return from_local8bit(name);
 #else
-       struct passwd * pw(getpwuid(geteuid()));
-       BOOST_ASSERT(pw);
+       struct passwd * pw = getpwuid(geteuid());
+       LASSERT(pw, /**/);
 
        string name = pw->pw_gecos;
        if (name.empty())
@@ -57,6 +58,11 @@ docstring const user_name()
 
 docstring const user_email()
 {
+       //FIXME: quick fix wrt bug #3764; only Anonymous is detected now.
+       //The code after should be used only after user approval.
+       return docstring();
+
+       
        string email = getEnv("EMAIL_ADDRESS");
        if (email.empty())
                email = getEnv("EMAIL");