diff options
author | Dimitri Staessens <dimitri.staessens@intec.ugent.be> | 2016-04-27 16:22:03 +0200 |
---|---|---|
committer | Dimitri Staessens <dimitri.staessens@intec.ugent.be> | 2016-04-27 16:22:03 +0200 |
commit | 9e0f4b5094386c4dfdf5db8bebcedf6430791573 (patch) | |
tree | a2264c5f9567528fdb8ddca181400a7722c54c50 /src/ipcpd/shim-udp/tests | |
parent | 6809a2beea07a661a9c651cae1e100537c401bb7 (diff) | |
parent | aed2c2e59190b0d0fb5e89d992063fcc538784fc (diff) | |
download | ouroboros-9e0f4b5094386c4dfdf5db8bebcedf6430791573.tar.gz ouroboros-9e0f4b5094386c4dfdf5db8bebcedf6430791573.zip |
Merged in sandervrijders/ouroboros/be (pull request #61)
ipcpd: Fix shim-udp-test
Diffstat (limited to 'src/ipcpd/shim-udp/tests')
-rw-r--r-- | src/ipcpd/shim-udp/tests/shim_udp_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ipcpd/shim-udp/tests/shim_udp_test.c b/src/ipcpd/shim-udp/tests/shim_udp_test.c index d2b9c642..036f5877 100644 --- a/src/ipcpd/shim-udp/tests/shim_udp_test.c +++ b/src/ipcpd/shim-udp/tests/shim_udp_test.c @@ -41,8 +41,8 @@ int shim_udp_test(int argc, char ** argv) char * ipcp_name = "test-shim-ipcp"; int i = 0; - char bogus[15]; - memset(&bogus, 0, 15); + char bogus[16]; + memset(&bogus, 0, 16); struct dif_config conf; memset(&conf, 0, sizeof conf); |