/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugins.d/plymouth.c

* mandos (transitional_dbus_metaclass): Renamed to
                                        "AlternateDBusNamesMetaclass".
                                        All users changed.  Also added
                                        comments, wrapped lines, and
                                        searching of all base classes
                                        for D-Bus attributes.  It now
                                        adds the *old* interface name,
                                        not the new one.
  (ClientDBus, MandosDBusService): Use the new interface names.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 * along with this program.  If not, see
20
20
 * <http://www.gnu.org/licenses/>.
21
21
 * 
22
 
 * Contact the authors at <mandos@recompile.se>.
 
22
 * Contact the authors at <mandos@fukt.bsnet.se>.
23
23
 */
24
24
 
25
25
#define _GNU_SOURCE             /* asprintf(), TEMP_FAILURE_RETRY() */
75
75
}
76
76
 
77
77
/* Function to use when printing errors */
78
 
__attribute__((format (gnu_printf, 3, 4)))
79
78
void error_plus(int status, int errnum, const char *formatstring,
80
79
                ...){
81
80
  va_list ap;
154
153
  return true;
155
154
}
156
155
 
157
 
__attribute__((nonnull (2, 3)))
158
156
bool exec_and_wait(pid_t *pid_return, const char *path,
159
157
                   const char **argv, bool interruptable,
160
158
                   bool daemonize){
214
212
  return false;
215
213
}
216
214
 
217
 
__attribute__((nonnull))
218
215
int is_plymouth(const struct dirent *proc_entry){
219
216
  int ret;
220
217
  {