Displaying 4 results from an estimated 4 matches for "1f5d9d6".
2009 Jul 04
1
[PATCH] Fix comment typo
Signed-off-by: Ferenc Wagner <wferi at niif.hu>
---
tftpd/tftpd.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tftpd/tftpd.c b/tftpd/tftpd.c
index 721ebd8..1f5d9d6 100644
--- a/tftpd/tftpd.c
+++ b/tftpd/tftpd.c
@@ -696,7 +696,7 @@ int main(int argc, char **argv)
}
#endif
/* Daemonize this process */
- /* Note: when running in secure mode (-s), we must not chroot, since
+ /* Note: when running in secure mode (-s), we must not c...
2009 Sep 05
5
[tftpd PATCH 0/5] pidfile option and syslog fix
Hi,
This is my current patch queue. The patches are independent, AFAIK,
so feel free to cherry-pick or reject them independently.
The bottom one was needed for a successful build here; the top one
contains all the modifications you requested on IRC, and more.
Meanwhile I hit one of the four stray TABs in tftpd.c, and decided to
get rid of them.
Comments welcome.
---
Ferenc Wagner (5):
2009 Jul 04
2
[PATCH] Create /var/run/tftpd-hpa.pid in standalone mode
...no such thing exists in standalone mode.
SIGTERM and SIGINT should be catched and considered normal, I guess.
Signed-off-by: Ferenc Wagner <wferi at niif.hu>
---
tftpd/tftpd.c | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/tftpd/tftpd.c b/tftpd/tftpd.c
index 1f5d9d6..18896c9 100644
--- a/tftpd/tftpd.c
+++ b/tftpd/tftpd.c
@@ -517,6 +517,7 @@ int main(int argc, char **argv)
/* If we're running standalone, set up the input port */
if (standalone) {
+ FILE *pidfile;
#ifdef HAVE_IPV6
if (ai_fam != AF_INET6) {
#endif
@@ -702,6 +703,...
2009 Jul 19
0
[PATCH] Untabify tftpd.c
Signed-off-by: Ferenc Wagner <wferi at niif.hu>
---
tftpd/tftpd.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/tftpd/tftpd.c b/tftpd/tftpd.c
index 1f5d9d6..ff39c85 100644
--- a/tftpd/tftpd.c
+++ b/tftpd/tftpd.c
@@ -364,7 +364,7 @@ int main(int argc, char **argv)
srand(time(NULL) ^ getpid());
while ((c = getopt_long(argc, argv, short_options, long_options, NULL))
- != -1)
+ != -1)
switch (c) {
case '4'...