diff options
Diffstat (limited to 'modutils/modutils-24.c')
-rw-r--r-- | modutils/modutils-24.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils/modutils-24.c b/modutils/modutils-24.c index 451975ab9..169fe54ae 100644 --- a/modutils/modutils-24.c +++ b/modutils/modutils-24.c | |||
@@ -3513,7 +3513,7 @@ static void set_tainted(int fd, const char *m_name, | |||
3513 | buf[sizeof(buf)-1] = '\0'; | 3513 | buf[sizeof(buf)-1] = '\0'; |
3514 | oldval = strtoul(buf, NULL, 10); | 3514 | oldval = strtoul(buf, NULL, 10); |
3515 | sprintf(buf, "%d\n", oldval | taint); | 3515 | sprintf(buf, "%d\n", oldval | taint); |
3516 | write(fd, buf, strlen(buf)); | 3516 | xwrite_str(fd, buf); |
3517 | } | 3517 | } |
3518 | } | 3518 | } |
3519 | 3519 | ||