2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 06:15:37 +00:00

Avoid compilation error on Solaris 10 with Stun Studio 12.

Bug #727
This commit is contained in:
Todd C. Miller
2015-11-01 15:08:50 -07:00
parent c752d91a3c
commit c6dad0001d

View File

@@ -354,13 +354,13 @@ ts_fill4(struct timestamp_entry *entry, struct passwd *pw, int flags, bool tty_t
static void
ts_fill(struct timestamp_entry *entry, struct passwd *pw, int flags)
{
return ts_fill4(entry, pw, flags, def_tty_tickets);
ts_fill4(entry, pw, flags, def_tty_tickets);
}
static void
ts_fill_tty(struct timestamp_entry *entry, struct passwd *pw, int flags)
{
return ts_fill4(entry, pw, flags, true);
ts_fill4(entry, pw, flags, true);
}
/*