~lightdm-team/lightdm/1.4

« back to all changes in this revision

Viewing changes to src/session.c

  • Committer: robert.ancell at canonical
  • Date: 2011-02-20 10:27:53 UTC
  • Revision ID: robert.ancell@canonical.com-20110220102753-2kehwju1amzcpoag
Use a private pipe for greeter<->server communication instead of D-Bus (needs to be fixed in liblightdm-qt)

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
}
80
80
 
81
81
gboolean
82
 
session_start (Session *session)
 
82
session_start (Session *session, gboolean create_pipe)
83
83
{
84
84
    //gint session_stdin, session_stdout, session_stderr;
85
85
    gboolean result;
136
136
                                  session->priv->username,
137
137
                                  working_dir,
138
138
                                  session->priv->command,
 
139
                                  create_pipe,
139
140
                                  &error);
140
141
    g_free (working_dir);
141
142